Last active
March 12, 2016 05:53
-
-
Save EntropyWorks/9aaf39204ea8e4e202b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| LiveCD based on work done by http://willhaley.com/blog/create-a-custom-debian-live-environment/ | |
| I have been trying to create a LiveCD for myself using an in house flavor of | |
| Debian Jessie with a 4.x kernel but have run into a blocker. | |
| Any suggestions on how to fix this? I've tried adding union=overlay, union=overlayfs | |
| Begin: Running /scripts/live-realpremount ... done. | |
| Begin: Mounting "/live/medium/live/filesystem.squashfs" on "//filesystem.squashfs" via "/dev/loop" ... done. | |
| mount: mounting overlayfs on /root/ failed: No such device | |
| mount overlayfs on /root/ failed with option -o noatime,lowerdir=//filesystem.squashfs/,upperdir=/live/overlay | |
| modprobe: module ehci-orion not found in modules.dep |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Begin /boot/grub/grub.cfg | |
| set default=0 | |
| set timeout=8 | |
| insmod ext2 | |
| insmod squashfs | |
| set root=hd31 | |
| # placed the filesystem.squashfs file under /live and that doesn't work. | |
| menuentry "hLinux" { | |
| linux /boot/vmlinuz1 boot=live toram=filesystem.squashfs union=overlayfs live-media-path=/live | |
| initrd /boot/initrd1 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment