diff options
Diffstat (limited to 'payloads/external/LinuxBoot')
-rw-r--r-- | payloads/external/LinuxBoot/Kconfig | 5 | ||||
-rw-r--r-- | payloads/external/LinuxBoot/Makefile | 4 |
2 files changed, 3 insertions, 6 deletions
diff --git a/payloads/external/LinuxBoot/Kconfig b/payloads/external/LinuxBoot/Kconfig index 8acb542215..a872d49bf8 100644 --- a/payloads/external/LinuxBoot/Kconfig +++ b/payloads/external/LinuxBoot/Kconfig @@ -129,11 +129,8 @@ config LINUXBOOT_UROOT_FILES initramfs. config PAYLOAD_USERSPACE - string "LinuxBoot initramfs" + string default "payloads/external/LinuxBoot/linuxboot/initramfs.cpio.xz" - help - The initramfs to use with the compiled kernel. - Useful for debugging or custom initramfs. endif endif diff --git a/payloads/external/LinuxBoot/Makefile b/payloads/external/LinuxBoot/Makefile index 83768055ef..006fb6ee5d 100644 --- a/payloads/external/LinuxBoot/Makefile +++ b/payloads/external/LinuxBoot/Makefile @@ -33,7 +33,7 @@ endif OBJCOPY:=$(LINUXBOOT_COMPILE)objcopy -all: payload +all: linuxboot toolchain: if [[ ! -x "$(LINUXBOOT_COMPILE)gcc" ]]; then \ @@ -95,7 +95,7 @@ $(PWD)/$(CONFIG_PAYLOAD_USERSPACE): echo "Building without u-root support" endif -payload: $(project_dir)/kernel-image $(PWD)/$(CONFIG_PAYLOAD_USERSPACE) +linuxboot: $(project_dir)/kernel-image $(PWD)/$(CONFIG_PAYLOAD_USERSPACE) clean: if [ -d "$(kernel_dir)" ]; then rm -rf $(kernel_dir); fi |