forked from u-boot/u-boot
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quite a lot of the code in common/relates to booting and images. Before adding more it seems like a good time to move the code into its own directory. Most files with 'boot' or 'image' in them are moved, except: - autoboot.c which relates to U-Boot automatically running a script - bootstage.c which relates to U-Boot timing Drop the removal of boot* files from the output directory, since this interfers with the symlinks created by tools and there does not appear to be any such file from my brief testing. Signed-off-by: Simon Glass <[email protected]> Reviewed-by: Artem Lapkin <[email protected]> Tested-by: Artem Lapkin <[email protected]>
- Loading branch information
Showing
27 changed files
with
51 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# SPDX-License-Identifier: GPL-2.0+ | ||
# | ||
# (C) Copyright 2004-2006 | ||
# Wolfgang Denk, DENX Software Engineering, [email protected]. | ||
|
||
ifndef CONFIG_SPL_BUILD | ||
|
||
# This option is not just y/n - it can have a numeric value | ||
ifdef CONFIG_BOOT_RETRY_TIME | ||
obj-y += bootretry.o | ||
endif | ||
|
||
obj-$(CONFIG_CMD_BOOTM) += bootm.o bootm_os.o | ||
obj-$(CONFIG_CMD_BOOTZ) += bootm.o bootm_os.o | ||
obj-$(CONFIG_CMD_BOOTI) += bootm.o bootm_os.o | ||
|
||
endif | ||
|
||
obj-y += image.o image-board.o | ||
obj-$(CONFIG_ANDROID_AB) += android_ab.o | ||
obj-$(CONFIG_ANDROID_BOOT_IMAGE) += image-android.o image-android-dt.o | ||
obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += image-fdt.o | ||
obj-$(CONFIG_$(SPL_TPL_)FIT_SIGNATURE) += fdt_region.o | ||
obj-$(CONFIG_$(SPL_TPL_)FIT) += image-fit.o | ||
obj-$(CONFIG_$(SPL_)MULTI_DTB_FIT) += boot_fit.o common_fit.o | ||
obj-$(CONFIG_$(SPL_TPL_)IMAGE_SIGN_INFO) += image-sig.o | ||
obj-$(CONFIG_$(SPL_TPL_)FIT_SIGNATURE) += image-fit-sig.o | ||
obj-$(CONFIG_$(SPL_TPL_)FIT_CIPHER) += image-cipher.o | ||
|
||
obj-$(CONFIG_CMD_ADTIMG) += image-android-dt.o | ||
|
||
ifdef CONFIG_SPL_BUILD | ||
obj-$(CONFIG_SPL_LOAD_FIT) += common_fit.o | ||
endif |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
source "common/Kconfig.boot" | ||
|
||
menu "Console" | ||
|
||
config MENU | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters