From: <abe...@us...> - 2017-05-23 18:00:43
|
Revision: 8327 http://sourceforge.net/p/astlinux/code/8327 Author: abelbeck Date: 2017-05-23 18:00:40 +0000 (Tue, 23 May 2017) Log Message: ----------- acpid, /proc/acpi/event no longer exists to determine if acpid should be started, so use /dev/input/event0 instead with kernel CONFIG_INPUT_EVDEV=y Modified Paths: -------------- branches/1.0/package/acpid/acpid.init branches/1.0/project/astlinux/geni586/linux-smp.config branches/1.0/project/astlinux/genx86_64/linux-smp-vm.config branches/1.0/project/astlinux/genx86_64/linux-smp.config Modified: branches/1.0/package/acpid/acpid.init =================================================================== --- branches/1.0/package/acpid/acpid.init 2017-05-23 14:56:16 UTC (rev 8326) +++ branches/1.0/package/acpid/acpid.init 2017-05-23 18:00:40 UTC (rev 8327) @@ -10,7 +10,7 @@ start () { - if [ -x /usr/sbin/acpid -a -e /proc/acpi/event ]; then + if [ -x /usr/sbin/acpid -a -e /dev/input/event0 ]; then echo "Starting acpid..." /usr/sbin/acpid -p $PIDFILE Modified: branches/1.0/project/astlinux/geni586/linux-smp.config =================================================================== --- branches/1.0/project/astlinux/geni586/linux-smp.config 2017-05-23 14:56:16 UTC (rev 8326) +++ branches/1.0/project/astlinux/geni586/linux-smp.config 2017-05-23 18:00:40 UTC (rev 8327) @@ -1614,7 +1614,7 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 # CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set +CONFIG_INPUT_EVDEV=y # CONFIG_INPUT_EVBUG is not set # Modified: branches/1.0/project/astlinux/genx86_64/linux-smp-vm.config =================================================================== --- branches/1.0/project/astlinux/genx86_64/linux-smp-vm.config 2017-05-23 14:56:16 UTC (rev 8326) +++ branches/1.0/project/astlinux/genx86_64/linux-smp-vm.config 2017-05-23 18:00:40 UTC (rev 8327) @@ -1607,7 +1607,7 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 # CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set +CONFIG_INPUT_EVDEV=y # CONFIG_INPUT_EVBUG is not set # Modified: branches/1.0/project/astlinux/genx86_64/linux-smp.config =================================================================== --- branches/1.0/project/astlinux/genx86_64/linux-smp.config 2017-05-23 14:56:16 UTC (rev 8326) +++ branches/1.0/project/astlinux/genx86_64/linux-smp.config 2017-05-23 18:00:40 UTC (rev 8327) @@ -1576,7 +1576,7 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 # CONFIG_INPUT_JOYDEV is not set -# CONFIG_INPUT_EVDEV is not set +CONFIG_INPUT_EVDEV=y # CONFIG_INPUT_EVBUG is not set # This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |