Loading arch/xtensa/Kconfig +9 −0 Original line number Diff line number Diff line Loading @@ -473,6 +473,15 @@ config BUILTIN_DTB string "DTB to build into the kernel image" depends on OF config PARSE_BOOTPARAM bool "Parse bootparam block" default y help Parse parameters passed to the kernel from the bootloader. It may be disabled if the kernel is known to run without the bootloader. If unsure, say Y. config BLK_DEV_SIMDISK tristate "Host file-based simulated block device support" default n Loading arch/xtensa/boot/boot-elf/bootstrap.S +5 −1 Original line number Diff line number Diff line Loading @@ -42,6 +42,9 @@ RomInitAddr: .word KERNELOFFSET #endif RomBootParam: #ifndef CONFIG_PARSE_BOOTPARAM .word 0 #else .word _bootparam _bootparam: .short BP_TAG_FIRST Loading @@ -50,6 +53,7 @@ _bootparam: .short BP_TAG_LAST .short 0 .long 0 #endif .align 4 _SetupMMU: Loading arch/xtensa/kernel/setup.c +8 −0 Original line number Diff line number Diff line Loading @@ -79,6 +79,7 @@ static char __initdata command_line[COMMAND_LINE_SIZE]; static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE; #endif #ifdef CONFIG_PARSE_BOOTPARAM /* * Boot parameter parsing. * Loading Loading @@ -176,6 +177,13 @@ static int __init parse_bootparam(const bp_tag_t* tag) return 0; } #else static int __init parse_bootparam(const bp_tag_t *tag) { pr_info("Ignoring boot parameters at %p\n", tag); return 0; } #endif #ifdef CONFIG_OF Loading Loading
arch/xtensa/Kconfig +9 −0 Original line number Diff line number Diff line Loading @@ -473,6 +473,15 @@ config BUILTIN_DTB string "DTB to build into the kernel image" depends on OF config PARSE_BOOTPARAM bool "Parse bootparam block" default y help Parse parameters passed to the kernel from the bootloader. It may be disabled if the kernel is known to run without the bootloader. If unsure, say Y. config BLK_DEV_SIMDISK tristate "Host file-based simulated block device support" default n Loading
arch/xtensa/boot/boot-elf/bootstrap.S +5 −1 Original line number Diff line number Diff line Loading @@ -42,6 +42,9 @@ RomInitAddr: .word KERNELOFFSET #endif RomBootParam: #ifndef CONFIG_PARSE_BOOTPARAM .word 0 #else .word _bootparam _bootparam: .short BP_TAG_FIRST Loading @@ -50,6 +53,7 @@ _bootparam: .short BP_TAG_LAST .short 0 .long 0 #endif .align 4 _SetupMMU: Loading
arch/xtensa/kernel/setup.c +8 −0 Original line number Diff line number Diff line Loading @@ -79,6 +79,7 @@ static char __initdata command_line[COMMAND_LINE_SIZE]; static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE; #endif #ifdef CONFIG_PARSE_BOOTPARAM /* * Boot parameter parsing. * Loading Loading @@ -176,6 +177,13 @@ static int __init parse_bootparam(const bp_tag_t* tag) return 0; } #else static int __init parse_bootparam(const bp_tag_t *tag) { pr_info("Ignoring boot parameters at %p\n", tag); return 0; } #endif #ifdef CONFIG_OF Loading