diff options
| author | Arslaan Pathan <[email protected]> | 2026-06-10 20:12:25 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-06-10 20:12:25 +1200 |
| commit | 9e4ff9ee6a13bcd7530ba033c54dc0ceb17b54d8 (patch) | |
| tree | 25524abc3d1412e7c6559a50dc624071a00138d0 /initramfs_init | |
| parent | 3609dc6087944e642233d15ee158504f57a266f3 (diff) | |
| download | yerbalinux-9e4ff9ee6a13bcd7530ba033c54dc0ceb17b54d8.tar.xz yerbalinux-9e4ff9ee6a13bcd7530ba033c54dc0ceb17b54d8.zip | |
Use relative symlink to fix initramfs failing due to absolute
Diffstat (limited to 'initramfs_init')
| -rw-r--r-- | initramfs_init | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/initramfs_init b/initramfs_init index b1aface..ad27ff7 100644 --- a/initramfs_init +++ b/initramfs_init @@ -46,8 +46,11 @@ if [ ! -c /dev/tty0 ]; then mknod -m 620 /dev/tty0 c 4 0 fi +echo "[yerba-initramfs/init] DEBUG: running ls on /mnt/overlay/merged" +ls /mnt/overlay/merged + echo "[yerba-initramfs/init] Switching to overlay root..." -exec switch_root /mnt/overlay/merged /init +switch_root /mnt/overlay/merged /init echo "[yerba-initramfs/init] switch_root failed, dropping to shell" exec /bin/sh |
