This provides a basic prototype for boot control. Some documentation is in boot/bootctl/README.rst
15 lines
307 B
Makefile
15 lines
307 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2025 Canonical Ltd
|
|
# Written by Simon Glass <simon.glass@canonical.com>
|
|
|
|
obj-y += bootctl-uclass.o
|
|
obj-y += bootctl.o
|
|
obj-y += efi_os.o
|
|
obj-y += extlinux.o
|
|
obj-y += logic.o
|
|
obj-y += simple_meas.o
|
|
obj-y += simple_state.o
|
|
obj-y += simple_ui.o
|
|
obj-y += util.o
|