Kconfig (728d90bdc9e480dc93913e59a0aa3c896c7aa697) | Kconfig (d79fbb3a32f05a7e1cc0294b86dacdb9cc3ad7f5) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2source "arch/powerpc/platforms/Kconfig.cputype" 3 4config PPC32 5 bool 6 default y if !PPC64 7 8config 32BIT --- 860 unchanged lines hidden (view full) --- 869 default "console=ttyS0,9600 console=tty0 root=/dev/sda2" if CMDLINE_BOOL 870 default "" 871 help 872 On some platforms, there is currently no way for the boot loader to 873 pass arguments to the kernel. For these platforms, you can supply 874 some command-line options at build time by entering them here. In 875 most cases you will need to specify the root device here. 876 | 1# SPDX-License-Identifier: GPL-2.0 2source "arch/powerpc/platforms/Kconfig.cputype" 3 4config PPC32 5 bool 6 default y if !PPC64 7 8config 32BIT --- 860 unchanged lines hidden (view full) --- 869 default "console=ttyS0,9600 console=tty0 root=/dev/sda2" if CMDLINE_BOOL 870 default "" 871 help 872 On some platforms, there is currently no way for the boot loader to 873 pass arguments to the kernel. For these platforms, you can supply 874 some command-line options at build time by entering them here. In 875 most cases you will need to specify the root device here. 876 |
877choice 878 prompt "Kernel command line type" if CMDLINE != "" 879 default CMDLINE_FROM_BOOTLOADER 880 881config CMDLINE_FROM_BOOTLOADER 882 bool "Use bootloader kernel arguments if available" 883 help 884 Uses the command-line options passed by the boot loader. If 885 the boot loader doesn't provide any, the default kernel command 886 string provided in CMDLINE will be used. 887 888config CMDLINE_EXTEND 889 bool "Extend bootloader kernel arguments" 890 help 891 The command-line arguments provided by the boot loader will be 892 appended to the default kernel command string. 893 |
|
877config CMDLINE_FORCE 878 bool "Always use the default kernel command string" | 894config CMDLINE_FORCE 895 bool "Always use the default kernel command string" |
879 depends on CMDLINE_BOOL | |
880 help 881 Always use the default kernel command string, even if the boot 882 loader passes other arguments to the kernel. 883 This is useful if you cannot or don't want to change the 884 command-line options your boot loader passes to the kernel. 885 | 896 help 897 Always use the default kernel command string, even if the boot 898 loader passes other arguments to the kernel. 899 This is useful if you cannot or don't want to change the 900 command-line options your boot loader passes to the kernel. 901 |
902endchoice 903 |
|
886config EXTRA_TARGETS 887 string "Additional default image types" 888 help 889 List additional targets to be built by the bootwrapper here (separated 890 by spaces). This is useful for targets that depend of device tree 891 files in the .dts directory. 892 893 Targets in this list will be build as part of the default build --- 313 unchanged lines hidden --- | 904config EXTRA_TARGETS 905 string "Additional default image types" 906 help 907 List additional targets to be built by the bootwrapper here (separated 908 by spaces). This is useful for targets that depend of device tree 909 files in the .dts directory. 910 911 Targets in this list will be build as part of the default build --- 313 unchanged lines hidden --- |