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.
8 lines
337 B
8 lines
337 B
#!/bin/bash |
|
dracut_install mount mknod mkdir modprobe pidof sleep chroot echo sed sh ls |
|
# install our scripts and hooks |
|
inst "$moddir/init" "/init" |
|
inst "$moddir/switch_root" "/sbin/switch_root" |
|
inst_hook pre-pivot 50 "$moddir/selinux-loadpolicy.sh" |
|
inst_hook mount 90 "$moddir/resume.sh" |
|
inst_hook mount 99 "$moddir/mount-partition.sh"
|
|
|