Linuxboot: remove initramfs path entry
Remove Linuxboot initramfs path entry in Kconfig. Custom initramfs can and should be used with 'Linux payload'. Change-Id: I648fb2e0383d20b0e4d50e416af637ea07d1efb4 Signed-off-by: Marcello Sylvester Bauer <info@marcellobauer.com> Reviewed-on: https://review.coreboot.org/29448 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
This commit is contained in:
parent
28e0cb4b23
commit
9d3b1b206c
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue