remove default console=ttyS0,115200 and systemd.log_target=console from default kargs
[bootcd.git] / prep.sh
diff --git a/prep.sh b/prep.sh
index 6e256c0..a679ed9 100755 (executable)
--- a/prep.sh
+++ b/prep.sh
@@ -50,7 +50,7 @@ pkgsfile=$(pl_locateDistroFile ../build/ $pldistro bootcd.pkgs)
 pl_root_mkfedora $bootcd $pldistro $pkgsfile
 pl_root_tune_image $bootcd
 
-# Add site_admin console account to BootCD: with root priv, and empty passwd
+# Add site_admin console account to BootCD: with root priv, and self passwd
 CRYPT_SA_PASSWORD=$(python -c "import crypt, random, string; salt = [random.choice(string.letters + string.digits + \"./\") for i in range(0,8)] ; print crypt.crypt('site_admin', '\$1\$' + \"\".join(salt) + '\$')")
 chroot ${bootcd} /usr/sbin/useradd -p "$CRYPT_SA_PASSWORD" -o -g 0 -u 0 -m site_admin
 
@@ -101,8 +101,8 @@ if [ -d $bootcd/etc/systemd/system ] ; then
     echo "* Enabling getty on tty2"
     # 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/default.target.wants ] || mkdir -p $bootcd/etc/systemd/system/default.target.wants
-    ln -sf /usr/lib/systemd/system/getty@.service $bootcd/etc/systemd/system/default.target.wants/getty@tty2.service
+    [ -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
 fi
 
 # Install fallback node configuration file
@@ -120,6 +120,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