diff options
author | xengineering <me@xengineering.eu> | 2025-04-21 11:24:41 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-04-21 11:24:41 +0200 |
commit | 8f1e44de648e2c3a0a7bb6aa827dacf5ee563478 (patch) | |
tree | 96b2618a600435e58a46ae84ab27c2f7b7723e8b | |
parent | 86c9fcc747374e29a9b3af7f2742e28921bfba52 (diff) | |
download | craft-8f1e44de648e2c3a0a7bb6aa827dacf5ee563478.tar craft-8f1e44de648e2c3a0a7bb6aa827dacf5ee563478.tar.zst craft-8f1e44de648e2c3a0a7bb6aa827dacf5ee563478.zip |
The `syslinux.cfg` file needs to be copied explicitly. This likely
changed upstream. Otherwise the `sed` call fails and the system is not
bootable.
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -103,6 +103,7 @@ mkdir -p /boot/syslinux cp /usr/lib/syslinux/bios/*.c32 /boot/syslinux/ extlinux --install /boot/syslinux dd bs=440 count=1 conv=notrunc if=/usr/lib/syslinux/bios/mbr.bin of=/dev/vda +cp /usr/share/syslinux/syslinux.cfg /boot/syslinux/ sed -i 's|root=/dev/sda3 rw|root=/dev/vda2 rw console=ttyS0|g' /boot/syslinux/syslinux.cfg exit |