rehi.. * Roman Zippel <[EMAIL PROTECTED]> [2004-02-24 09:09 +0100]: > Sebastian Henschel wrote: > > Your mailer ate the archive, it doesn't look that big, could you include > them uncompressed? This would also make it easier to quote them if needed.
ok. although i think it is not necessary anymore, because you already addressed the issues at hand. they are attached for the sake of completeness. > >Kconfig.if: i prefer this version the most, though it simply does not > >work, i do not understand why and perhaps this is due to a bug in > >kconfig or badly explained in Documentation/kbuild/kconfig-language.txt > >or just my stupidness. my arch is PPC_PMAC. when using > >menuconfig/gconfig, i get the correct prompt, but the help text is from > >the last config PM defined in this file. so in this case, it is from X86. > > This is (currently) correct, kconfig only stores the last the help > entry. I want to change this at some point, but I haven't decided about > the syntax yet, e.g. which help text should be used for entries, which > don't have their own help. sounds easy at first sight, just do not use any help text. but i strongly assume, that there are some places where this simple approach does not work out. i have only limited insight into the whole kconfig stuff. :) > >Kconfig.menu: this is basically the same as Kconfig.if, but the docs > >say that "The dependency expression <expr> is appended > >to all enclosed menu entries". that made me suspicious and thus, the > >"if" clauses include menus here. > > I can only guess here, but from a dependency point these two are identical: > > menu "..." > depends on <expr> > ... > endmenu > > if <expr> > ... > endif you were guessing right. Kconfig.menu is superflous, then. > >Kconfig.prompt: the section in the docs about the prompt left me with > >the impression that it is possible to define several prompts for the > >same "config" entry if there is an "if" clause appended to each prompt. > >kconfig warns about prompt redefinitions and only considers the last > >defined prompt. > > That's correct. A single menu entry can have only one prompt, but a > config symbol can have multiple menu entries. ok, that was a straw, anyway. thanks, sebastian -- ::: .O. ::: ..O ::: OOO ::: lynx -source http://www.kodeaffe.de/shensche.pub | gpg --import
if PPC_PMAC && ADB_PMU && PMAC_PBOOK config PM bool "Power Management support" default y ---help--- "Power Management" means that parts of your computer are shut off or put into a power conserving "sleep" mode if they are not being used. It is considered to be EXPERIMENTAL on this platform. Power Management is most important for battery powered laptop computers; if you have a laptop, check out the Linux Laptop home page on the WWW at <http://www.linux-on-laptops.com/> or Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/> and the Battery Powered Linux mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>. endif if ((PPC && 4xx) || (MIPS && SOC_AU1X00)) && EXPERIMENTAL config PM bool "Power Management support (EXPERIMENTAL)" ---help--- "Power Management" means that parts of your computer are shut off or put into a power conserving "sleep" mode if they are not being used. It is considered to be EXPERIMENTAL on this platform. Power Management is most important for battery powered laptop computers; if you have a laptop, check out the Linux Laptop home page on the WWW at <http://www.linux-on-laptops.com/> or Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/> and the Battery Powered Linux mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>. endif if IA64 && (IA64_GENERIC || IA64_DIG || IA64_HP_ZX1) config PM bool "Power Management support" ---help--- "Power Management" means that parts of your computer are shut off or put into a power conserving "sleep" mode if they are not being used. Power Management is most important for battery powered laptop computers; if you have a laptop, check out the Linux Laptop home page on the WWW at <http://www.linux-on-laptops.com/> or Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/> and the Battery Powered Linux mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>. endif if X86 || X86_64 config PM bool "Power Management support" ---help--- "Power Management" means that parts of your computer are shut off or put into a power conserving "sleep" mode if they are not being used. There are two competing standards for doing this: APM and ACPI. If you want to use either one, say Y here and then also to the requisite support below. Power Management is most important for battery powered laptop computers; if you have a laptop, check out the Linux Laptop home page on the WWW at <http://www.linux-on-laptops.com/> or Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/> and the Battery Powered Linux mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>. Note that, even if you say N here, Linux on the x86 architecture will issue the hlt instruction if nothing is to be done, thereby sending the processor to sleep and saving power. config SOFTWARE_SUSPEND bool "Software Suspend (EXPERIMENTAL)" depends on EXPERIMENTAL && PM && SWAP ---help--- Enable the possibilty of suspendig machine. It doesn't need APM. You may suspend your machine by 'swsusp' or 'shutdown -z <time>' (patch for sysvinit needed). It creates an image which is saved in your active swaps. By the next booting the, pass 'resume=/dev/swappartition' and kernel will detect the saved image, restore the memory from it and then it continues to run as before you've suspended. If you don't want the previous state to continue use the 'noresume' kernel option. However note that your partitions will be fsck'd and you must re-mkswap your swap partitions. It does not work with swap files. Right now you may boot without resuming and then later resume but in meantime you cannot use those swap partitions/files which were involved in suspending. Also in this case there is a risk that buffers on disk won't match with saved ones. For more information take a look at Documentation/power/swsusp.txt. config PM_DISK bool "Suspend-to-Disk Support" depends on PM && SWAP ---help--- Suspend-to-disk is a power management state in which the contents of memory are stored on disk and the entire system is shut down or put into a low-power state (e.g. ACPI S4). When the computer is turned back on, the stored image is loaded from disk and execution resumes from where it left off before suspending. This config option enables the core infrastructure necessary to perform the suspend and resume transition. Currently, this suspend-to-disk implementation is based on a forked version of the swsusp code base. As such, it's still experimental, and still relies on CONFIG_SWAP. More information can be found in Documentation/power/. If unsure, Say N. config PM_DISK_PARTITION string "Default resume partition" depends on PM_DISK default "" ---help--- The default resume partition is the partition that the pmdisk suspend- to-disk implementation will look for a suspended disk image. The partition specified here will be different for almost every user. It should be a valid swap partition (at least for now) that is turned on before suspending. The partition specified can be overridden by specifying: pmdisk=/dev/<other device> which will set the resume partition to the device specified. One may also do: pmdisk=off to inform the kernel not to perform a resume transition. Note there is currently not a way to specify which device to save the suspended image to. It will simply pick the first available swap device. endif
menu "Power Management" depends on PPC_PMAC && ADB_PMU && PMAC_PBOOK config PM bool "Power Management support" default y ---help--- "Power Management" means that parts of your computer are shut off or put into a power conserving "sleep" mode if they are not being used. It is considered to be EXPERIMENTAL on this platform. Power Management is most important for battery powered laptop computers; if you have a laptop, check out the Linux Laptop home page on the WWW at <http://www.linux-on-laptops.com/> or Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/> and the Battery Powered Linux mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>. endmenu menu "Power Management" depends on ((PPC && 4xx) || (MIPS && SOC_AU1X00)) && EXPERIMENTAL config PM bool "Power Management support (EXPERIMENTAL)" ---help--- "Power Management" means that parts of your computer are shut off or put into a power conserving "sleep" mode if they are not being used. It is considered to be EXPERIMENTAL on this platform. Power Management is most important for battery powered laptop computers; if you have a laptop, check out the Linux Laptop home page on the WWW at <http://www.linux-on-laptops.com/> or Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/> and the Battery Powered Linux mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>. endmenu menu "Power Management" depends on IA_64 && (IA64_GENERIC || IA64_DIG || IA64_HP_ZX1) config PM bool "Power Management support" ---help--- "Power Management" means that parts of your computer are shut off or put into a power conserving "sleep" mode if they are not being used. Power Management is most important for battery powered laptop computers; if you have a laptop, check out the Linux Laptop home page on the WWW at <http://www.linux-on-laptops.com/> or Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/> and the Battery Powered Linux mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>. endmenu menu "Power Management" depends X86 || X86_64 config PM bool "Power Management support" ---help--- "Power Management" means that parts of your computer are shut off or put into a power conserving "sleep" mode if they are not being used. There are two competing standards for doing this: APM and ACPI. If you want to use either one, say Y here and then also to the requisite support below. Power Management is most important for battery powered laptop computers; if you have a laptop, check out the Linux Laptop home page on the WWW at <http://www.linux-on-laptops.com/> or Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/> and the Battery Powered Linux mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>. Note that, even if you say N here, Linux on the x86 architecture will issue the hlt instruction if nothing is to be done, thereby sending the processor to sleep and saving power. config SOFTWARE_SUSPEND bool "Software Suspend (EXPERIMENTAL)" depends on EXPERIMENTAL && PM && SWAP ---help--- Enable the possibilty of suspendig machine. It doesn't need APM. You may suspend your machine by 'swsusp' or 'shutdown -z <time>' (patch for sysvinit needed). It creates an image which is saved in your active swaps. By the next booting the, pass 'resume=/dev/swappartition' and kernel will detect the saved image, restore the memory from it and then it continues to run as before you've suspended. If you don't want the previous state to continue use the 'noresume' kernel option. However note that your partitions will be fsck'd and you must re-mkswap your swap partitions. It does not work with swap files. Right now you may boot without resuming and then later resume but in meantime you cannot use those swap partitions/files which were involved in suspending. Also in this case there is a risk that buffers on disk won't match with saved ones. For more information take a look at Documentation/power/swsusp.txt. config PM_DISK bool "Suspend-to-Disk Support" depends on PM && SWAP ---help--- Suspend-to-disk is a power management state in which the contents of memory are stored on disk and the entire system is shut down or put into a low-power state (e.g. ACPI S4). When the computer is turned back on, the stored image is loaded from disk and execution resumes from where it left off before suspending. This config option enables the core infrastructure necessary to perform the suspend and resume transition. Currently, this suspend-to-disk implementation is based on a forked version of the swsusp code base. As such, it's still experimental, and still relies on CONFIG_SWAP. More information can be found in Documentation/power/. If unsure, Say N. config PM_DISK_PARTITION string "Default resume partition" depends on PM_DISK default "" ---help--- The default resume partition is the partition that the pmdisk suspend- to-disk implementation will look for a suspended disk image. The partition specified here will be different for almost every user. It should be a valid swap partition (at least for now) that is turned on before suspending. The partition specified can be overridden by specifying: pmdisk=/dev/<other device> which will set the resume partition to the device specified. One may also do: pmdisk=off to inform the kernel not to perform a resume transition. Note there is currently not a way to specify which device to save the suspended image to. It will simply pick the first available swap device. endmenu
config PM bool prompt "Power Management support (EXPERIMENTAL)" if ((PPC && 4xx) || (MIPS && SOC_AU1X00)) && EXPERIMENTAL prompt "Power Management support" if (IA_64 && (IA64_GENERIC || IA64_DIG || IA64_HP_ZX1)) || X86 || X86_64 default y ---help--- "Power Management" means that parts of your computer are shut off or put into a power conserving "sleep" mode if they are not being used. On X86, there are two competing standards for doing this: APM and ACPI. If you want to use either one, say Y here and then also to the requisite support below. Power Management is most important for battery powered laptop computers; if you have a laptop, check out the Linux Laptop home page on the WWW at <http://www.linux-on-laptops.com/> or Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/> and the Battery Powered Linux mini-HOWTO, available from <http://www.tldp.org/docs.html#howto>. Note that, even if you say N here, Linux on the x86 architecture will issue the hlt instruction if nothing is to be done, thereby sending the processor to sleep and saving power. if X86 || X86_64 config SOFTWARE_SUSPEND bool "Software Suspend (EXPERIMENTAL)" depends on EXPERIMENTAL && PM && SWAP ---help--- Enable the possibilty of suspendig machine. It doesn't need APM. You may suspend your machine by 'swsusp' or 'shutdown -z <time>' (patch for sysvinit needed). It creates an image which is saved in your active swaps. By the next booting the, pass 'resume=/dev/swappartition' and kernel will detect the saved image, restore the memory from it and then it continues to run as before you've suspended. If you don't want the previous state to continue use the 'noresume' kernel option. However note that your partitions will be fsck'd and you must re-mkswap your swap partitions. It does not work with swap files. Right now you may boot without resuming and then later resume but in meantime you cannot use those swap partitions/files which were involved in suspending. Also in this case there is a risk that buffers on disk won't match with saved ones. For more information take a look at Documentation/power/swsusp.txt. config PM_DISK bool "Suspend-to-Disk Support" depends on PM && SWAP ---help--- Suspend-to-disk is a power management state in which the contents of memory are stored on disk and the entire system is shut down or put into a low-power state (e.g. ACPI S4). When the computer is turned back on, the stored image is loaded from disk and execution resumes from where it left off before suspending. This config option enables the core infrastructure necessary to perform the suspend and resume transition. Currently, this suspend-to-disk implementation is based on a forked version of the swsusp code base. As such, it's still experimental, and still relies on CONFIG_SWAP. More information can be found in Documentation/power/. If unsure, Say N. config PM_DISK_PARTITION string "Default resume partition" depends on PM_DISK default "" ---help--- The default resume partition is the partition that the pmdisk suspend- to-disk implementation will look for a suspended disk image. The partition specified here will be different for almost every user. It should be a valid swap partition (at least for now) that is turned on before suspending. The partition specified can be overridden by specifying: pmdisk=/dev/<other device> which will set the resume partition to the device specified. One may also do: pmdisk=off to inform the kernel not to perform a resume transition. Note there is currently not a way to specify which device to save the suspended image to. It will simply pick the first available swap device. endif
signature.asc
Description: Digital signature