You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
707 B
25 lines
707 B
#!/bin/bash |
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- |
|
# ex: ts=8 sw=4 sts=4 et filetype=sh |
|
dracut_install umount |
|
inst dmsetup |
|
inst blkid |
|
inst dd |
|
inst losetup |
|
inst grep |
|
|
|
# eject might be a symlink to consolehelper |
|
if [ -L /usr/bin/eject ]; then |
|
dracut_install /usr/sbin/eject |
|
else |
|
inst eject |
|
fi |
|
|
|
inst blockdev |
|
type -P checkisomd5 >/dev/null && inst checkisomd5 |
|
inst_hook cmdline 30 "$moddir/parse-dmsquash-live.sh" |
|
inst_hook pre-udev 30 "$moddir/dmsquash-live-genrules.sh" |
|
inst_hook pre-udev 30 "$moddir/dmsquash-liveiso-genrules.sh" |
|
inst "$moddir/dmsquash-live-root" "/sbin/dmsquash-live-root" |
|
# should probably just be generally included |
|
inst_rules 60-cdrom_id.rules
|
|
|