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