Create a new file in lib/efi to handle conversion of keys from EFI format to characters, so we can use it from multiple places. Update the serial_efi driver accordingly. Signed-off-by: Simon Glass <sjg@chromium.org>
14 lines
242 B
Makefile
14 lines
242 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2025 Simon Glass <sjg@chromium.org>
|
|
#
|
|
|
|
obj-y += basename.o
|
|
obj-y += device_path.o
|
|
obj-y += helper.o
|
|
obj-y += input.o
|
|
obj-y += load_options.o
|
|
obj-y += memory.o
|
|
obj-y += run.o
|
|
obj-y += string.o
|