ef05303be2
button.ko isn't compiled within elbrus kernel (or used in any way).
7 lines
181 B
Bash
Executable File
7 lines
181 B
Bash
Executable File
#!/bin/sh -efu
|
|
|
|
# provide kernel interface for ACPI power button
|
|
if [ `arch` != e2k -a -x /etc/init.d/acpid ]; then
|
|
grep -qsx button /etc/modules || echo button >> /etc/modules
|
|
fi
|