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.
39 lines
1.3 KiB
39 lines
1.3 KiB
#!/bin/bash |
|
|
|
# called by dracut |
|
check() { |
|
# a live host-only image doesn't really make a lot of sense |
|
[[ $hostonly ]] && return 1 |
|
return 255 |
|
} |
|
|
|
# called by dracut |
|
depends() { |
|
# if dmsetup is not installed, then we cannot support fedora/red hat |
|
# style live images |
|
echo dm rootfs-block img-lib |
|
return 0 |
|
} |
|
|
|
# called by dracut |
|
installkernel() { |
|
instmods squashfs loop iso9660 overlay |
|
} |
|
|
|
# called by dracut |
|
install() { |
|
inst_multiple umount dmsetup blkid dd losetup blockdev find |
|
inst_multiple -o checkisomd5 |
|
inst_hook cmdline 30 "$moddir/parse-dmsquash-live.sh" |
|
inst_hook cmdline 31 "$moddir/parse-iso-scan.sh" |
|
inst_hook pre-udev 30 "$moddir/dmsquash-live-genrules.sh" |
|
inst_hook pre-udev 30 "$moddir/dmsquash-liveiso-genrules.sh" |
|
inst_hook pre-pivot 20 "$moddir/apply-live-updates.sh" |
|
inst_script "$moddir/dmsquash-live-root.sh" "/sbin/dmsquash-live-root" |
|
inst_script "$moddir/iso-scan.sh" "/sbin/iso-scan" |
|
inst_script "$moddir/dmsquash-generator.sh" "$systemdutildir"/system-generators/dracut-dmsquash-generator |
|
# should probably just be generally included |
|
inst_rules 60-cdrom_id.rules |
|
inst_simple "$moddir/checkisomd5@.service" "/etc/systemd/system/checkisomd5@.service" |
|
dracut_need_initqueue |
|
}
|
|
|