From: Heiko Z. <smi...@us...> - 2004-07-05 20:12:21
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26987/scripts Modified Files: prepare Log Message: added selection of powermanagement some preparation for new kernel and new pax Index: prepare =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/prepare,v retrieving revision 1.47 retrieving revision 1.48 diff -u -d -r1.47 -r1.48 --- prepare 7 Jun 2004 03:11:35 -0000 1.47 +++ prepare 5 Jul 2004 20:11:39 -0000 1.48 @@ -152,6 +152,24 @@ fi + case "$CONFIG_LINUX_POWER_MGMT" in + APM ) + set_kernel_option CONFIG_PM y + set_kernel_option CONFIG_APM m + set_kernel_option CONFIG_ACPI n + ;; + ACPI ) + set_kernel_option CONFIG_PM y + set_kernel_option CONFIG_APM n + set_kernel_option CONFIG_ACPI y + ;; + *) + set_kernel_option CONFIG_PM n + set_kernel_option CONFIG_APM n + set_kernel_option CONFIG_ACPI n + ;; + esac + make oldconfig || exit 1 if [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then make dep || exit 1 |