X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=prep.sh;h=512b94e6e49841c435660b269870c3291ab666cc;hb=2c712e052d5989b00313b81fb7c0e14d5f97d24c;hp=0d0a87292114c6b0e9e041a6869a23c2926238a8;hpb=ab12c48e13809375bf18cb6c695293f95cb6b9dd;p=bootcd.git diff --git a/prep.sh b/prep.sh index 0d0a872..512b94e 100755 --- a/prep.sh +++ b/prep.sh @@ -98,11 +98,20 @@ if [ -d $bootcd/etc/systemd/system ] ; then for file in pl_boot.service pl_boot.target ; do install -D -m 644 systemd/$file $bootcd/etc/systemd/system done - echo "* Enabling getty on tty2" + echo "* Configuration BootCD to start up pl_boot" + # first attempt was to totally replace everything with pl_boot.target + # this however leads to physical f21 nodes not starting up properly + # because biosdevname is not properly honored and so pl_netinit gets confused # select pl_boot target this way instead of using kargs, as kargs apply to kexec boot as well - ln -sf /etc/systemd/system/pl_boot.target $bootcd/etc/systemd/system/default.target - [ -d $bootcd/etc/systemd/system/pl_boot.target.wants ] || mkdir -p $bootcd/etc/systemd/system/pl_boot.target.wants - ln -sf /usr/lib/systemd/system/getty@.service $bootcd/etc/systemd/system/pl_boot.target.wants/getty@tty2.service + # ln -sf /etc/systemd/system/pl_boot.target $bootcd/etc/systemd/system/default.target + #[ -d $bootcd/etc/systemd/system/pl_boot.target.wants ] || mkdir -p $bootcd/etc/systemd/system/pl_boot.target.wants + # Let's try another approach completely + # xxx if that worked we would not need pl_boot.target at all + mkdir -p $bootcd/etc/systemd/system/default.target.wants + ln -sf /etc/systemd/system/pl_boot.service $bootcd/etc/systemd/system/default.target.wants + echo "* Enabling getty on tty2" + #ln -sf /usr/lib/systemd/system/getty@.service $bootcd/etc/systemd/system/pl_boot.target.wants/getty@tty2.service + ln -sf /usr/lib/systemd/system/getty@.service $bootcd/etc/systemd/system/default.target.wants/getty@tty2.service fi # Install fallback node configuration file @@ -120,6 +129,7 @@ install -d -m 755 $isofs for kernel in $bootcd/boot/vmlinuz-* ; do if [ -f $kernel ] ; then install -D -m 644 $kernel $isofs/kernel + echo "* kernel created from $kernel" > $isofs/kernel.from fi done