boot.scr: append ; not \n to lzmadec command

this is simply to make copy-paste slightly more convenient
pull/2/head
Daniel Barlow 2024-01-01 20:21:42 +00:00
parent e505e37d9a
commit 921b4f24af
1 changed files with 2 additions and 3 deletions

View File

@ -116,10 +116,9 @@ in {
else "tftpboot $(hex $rootfsStart) result/rootfs"
}; tftpboot $(hex $dtbStart) result/dtb
${if cfg.compressRoot
then "lzmadec $(hex $rootfsLzStart) $(hex $rootfsStart)"
then "lzmadec $(hex $rootfsLzStart) $(hex $rootfsStart); "
else ""
}
${bootCommand} $(hex $imageStart) - $(hex $dtbStart)
} ${bootCommand} $(hex $imageStart) - $(hex $dtbStart)
EOF
'';