
  if [ -e /tmp/buildisoscript ] || [ -e /tmp/setup ]; then
    echo Post-install not needed in build environment
  else
    cd /boot
    if [ -x usr/bin/dracut ]; then
      dracut initramfs-6.1.177-GOS-61 --kver 6.1.177-GOS-61 2>&1 > /dev/null
      ln -sf initramfs-6.1.177-GOS-61 initrd-61
    else
      mkinitramfs -a -k 6.1.177-GOS-61
      ln -sf initrd-6.1.177-GOS-61 initrd-61
    fi
    ln -sf kernel-6.1.177-GOS-61 kernel-61
  fi
  
