f43d68ce62
rootfs got handy either though managing modules to preload might be enhanced further.
7 lines
164 B
Bash
Executable File
7 lines
164 B
Bash
Executable File
#!/bin/sh -efu
|
|
|
|
# provide kernel interface for ACPI power button
|
|
if [ -x /etc/init.d/acpid ]; then
|
|
grep -qsx button /etc/modules || echo button >> /etc/modules
|
|
fi
|