2002-04-25 16:20:52

by Steven Cole

[permalink] [raw]
Subject: [PATCH] 2.5.9-dj1, move choice selection in arch/ia64/config.in.

This patch moves the choice selection for Physical memory granularity
from the "Kernel hacking" section to the "Processor type and features"
section right after the choices for IA-64 processor type, IA-64 system type,
and Kernel page size. This seems to be a less obscure place for this option.

Steven

--- linux-2.5.9-dj1/arch/ia64/config.in.orig Thu Apr 25 10:02:48 2002
+++ linux-2.5.9-dj1/arch/ia64/config.in Thu Apr 25 10:04:35 2002
@@ -32,6 +32,10 @@
16KB CONFIG_IA64_PAGE_SIZE_16KB \
64KB CONFIG_IA64_PAGE_SIZE_64KB" 16KB

+choice 'Physical memory granularity' \
+ "16MB CONFIG_IA64_GRANULE_16MB \
+ 64MB CONFIG_IA64_GRANULE_64MB" 64MB
+
if [ "$CONFIG_IA64_HP_SIM" = "n" ]; then
define_bool CONFIG_ACPI y
define_bool CONFIG_ACPI_EFI y
@@ -236,10 +240,6 @@

mainmenu_option next_comment
comment 'Kernel hacking'
-
-choice 'Physical memory granularity' \
- "16MB CONFIG_IA64_GRANULE_16MB \
- 64MB CONFIG_IA64_GRANULE_64MB" 64MB

bool 'Kernel debugging' CONFIG_DEBUG_KERNEL
if [ "$CONFIG_DEBUG_KERNEL" != "n" ]; then






2002-04-25 16:48:18

by David Mosberger

[permalink] [raw]
Subject: Re: [PATCH] 2.5.9-dj1, move choice selection in arch/ia64/config.in.

>>>>> On 25 Apr 2002 10:16:31 -0600, Steven Cole <[email protected]> said:

Steven> This patch moves the choice selection for Physical memory
Steven> granularity from the "Kernel hacking" section to the
Steven> "Processor type and features" section right after the
Steven> choices for IA-64 processor type, IA-64 system type, and
Steven> Kernel page size. This seems to be a less obscure place for
Steven> this option.

Please don't move around stuff that you may not understand. This
option is *meant* to be in an obscure place, because, frankly, it's an
obscure thing that most folks never have to worry about. It's only
needed for certain, very rare, machines and it's only a temporary
thing.

Thanks,

--david