In /media (/ramdisk/media) an empty map (e.g. cdrom1) exists, but it doesn't contain any content.
Mount-gtk shows the CD drive and mount path as /media/cdrom1.
The line in the livemedia function in the initramfs should use the correct path:
Change:
- Code: Select all
mount -o move /test_mnt /newroot/livemnt
To (the correct name for the map should be derived first: here ==> cdrom1):
- Code: Select all
mount -o move /test_mnt /newroot/ramdisk/media/cdrom1
Or you can add a (the correct name for the map should be derived first: here ==> cdrom1):
- Code: Select all
mount --bind /newroot/livemnt /newroot/ramdisk/media/cdrom1

