aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorFrank Rowand <frowand@mvista.com>2005-06-28 19:48:04 -0400
committerPaul Mackerras <paulus@samba.org>2005-08-28 20:53:32 -0400
commit6020164499ff3a61cd8bebceb9e294a155079f71 (patch)
tree48e3407b76918314af13b7f38f4a3d2813f11fe8 /arch
parent293da76b3d4c2f362f906bce8c5d2e053bdf8d44 (diff)
[PATCH] ppc64: change duplicate Kconfig menu "General setup" to "Bus Options"
arch/ppc64/Kconfig defines a "General setup" menu, but also sources init/Kconfig which also defines a "General setup" menu. Both of these menus appear at the top level of make menuconfig. Having two menus with the same name is confusing. This patch renames the ppc64/Kconfig menu to be "Bus Options" and moves options in this menu which are not bus related to the end of the "Platform support" menu. There are many variations among architectures on the exact naming of the "Bus Options" menu. I chose to use the simplest one, which is also used in arch/ppc/Kconfig. Signed-off-by: Frank Rowand <frowand@mvista.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/ppc64/Kconfig68
1 files changed, 34 insertions, 34 deletions
diff --git a/arch/ppc64/Kconfig b/arch/ppc64/Kconfig
index 2ce87836c671..4d4f81c65012 100644
--- a/arch/ppc64/Kconfig
+++ b/arch/ppc64/Kconfig
@@ -350,13 +350,46 @@ config SECCOMP
350 350
351 If unsure, say Y. Only embedded should say N here. 351 If unsure, say Y. Only embedded should say N here.
352 352
353source "fs/Kconfig.binfmt"
354
355config HOTPLUG_CPU
356 bool "Support for hot-pluggable CPUs"
357 depends on SMP && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC)
358 select HOTPLUG
359 ---help---
360 Say Y here to be able to turn CPUs off and on.
361
362 Say N if you are unsure.
363
364config PROC_DEVICETREE
365 bool "Support for Open Firmware device tree in /proc"
366 depends on !PPC_ISERIES
367 help
368 This option adds a device-tree directory under /proc which contains
369 an image of the device tree that the kernel copies from Open
370 Firmware. If unsure, say Y here.
371
372config CMDLINE_BOOL
373 bool "Default bootloader kernel arguments"
374 depends on !PPC_ISERIES
375
376config CMDLINE
377 string "Initial kernel command string"
378 depends on CMDLINE_BOOL
379 default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
380 help
381 On some platforms, there is currently no way for the boot loader to
382 pass arguments to the kernel. For these platforms, you can supply
383 some command-line options at build time by entering them here. In
384 most cases you will need to specify the root device here.
385
353endmenu 386endmenu
354 387
355config ISA_DMA_API 388config ISA_DMA_API
356 bool 389 bool
357 default y 390 default y
358 391
359menu "General setup" 392menu "Bus Options"
360 393
361config ISA 394config ISA
362 bool 395 bool
@@ -389,45 +422,12 @@ config PCI_DOMAINS
389 bool 422 bool
390 default PCI 423 default PCI
391 424
392source "fs/Kconfig.binfmt"
393
394source "drivers/pci/Kconfig" 425source "drivers/pci/Kconfig"
395 426
396config HOTPLUG_CPU
397 bool "Support for hot-pluggable CPUs"
398 depends on SMP && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC)
399 select HOTPLUG
400 ---help---
401 Say Y here to be able to turn CPUs off and on.
402
403 Say N if you are unsure.
404
405source "drivers/pcmcia/Kconfig" 427source "drivers/pcmcia/Kconfig"
406 428
407source "drivers/pci/hotplug/Kconfig" 429source "drivers/pci/hotplug/Kconfig"
408 430
409config PROC_DEVICETREE
410 bool "Support for Open Firmware device tree in /proc"
411 depends on !PPC_ISERIES
412 help
413 This option adds a device-tree directory under /proc which contains
414 an image of the device tree that the kernel copies from Open
415 Firmware. If unsure, say Y here.
416
417config CMDLINE_BOOL
418 bool "Default bootloader kernel arguments"
419 depends on !PPC_ISERIES
420
421config CMDLINE
422 string "Initial kernel command string"
423 depends on CMDLINE_BOOL
424 default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
425 help
426 On some platforms, there is currently no way for the boot loader to
427 pass arguments to the kernel. For these platforms, you can supply
428 some command-line options at build time by entering them here. In
429 most cases you will need to specify the root device here.
430
431endmenu 431endmenu
432 432
433source "net/Kconfig" 433source "net/Kconfig"