* Add radeon/i915 drivers if MODULES=most, for KMS. * Remove blkid, busybox, klibc and module-init-tools stuff into its own hooks. * Fix init-premount/blacklist script, all files in /etc/modprobe.d should have the .conf extension. --HG-- extra : convert_revision : eb69e4c6e1097dfcc8ba937a96ec6e83fdb2f922
24 lines
231 B
Bash
Executable File
24 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PREREQ=""
|
|
|
|
prereqs()
|
|
{
|
|
echo "$PREREQ"
|
|
}
|
|
|
|
case $1 in
|
|
# get pre-requisites
|
|
prereqs)
|
|
prereqs
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
. /usr/share/initramfs-tools/hook-functions
|
|
|
|
# from libblkid
|
|
copy_exec /sbin/blkid.static /sbin/blkid
|
|
|
|
exit 0
|