1
0
forked from dan/liminix

drop tftpboot changes

'traditional' uboot tftp boot works fine as well
This commit is contained in:
Arnout Engelen 2025-01-02 09:45:18 +01:00
parent 2ec024b82c
commit da7cbb47b2
No known key found for this signature in database
GPG Key ID: 061107B0F74A6DAA

View File

@ -73,7 +73,6 @@ in {
cmdline = concatStringsSep " " config.boot.commandLine; cmdline = concatStringsSep " " config.boot.commandLine;
objcopy = "${pkgs.stdenv.cc.bintools.targetPrefix}objcopy"; objcopy = "${pkgs.stdenv.cc.bintools.targetPrefix}objcopy";
stripAndZip = '' stripAndZip = ''
cp vmlinux vmlinux.elf; chmod +w vmlinux.elf
${objcopy} -O binary -R .reginfo -R .notes -R .note -R .comment -R .mdebug -R .note.gnu.build-id -S vmlinux.elf vmlinux.bin ${objcopy} -O binary -R .reginfo -R .notes -R .note -R .comment -R .mdebug -R .note.gnu.build-id -S vmlinux.elf vmlinux.bin
rm -f vmlinux.bin.lzma ; lzma -k -z vmlinux.bin rm -f vmlinux.bin.lzma ; lzma -k -z vmlinux.bin
''; '';
@ -97,7 +96,7 @@ in {
# decompression code will assume that any memory after the # decompression code will assume that any memory after the
# end of the kernel is free # end of the kernel is free
imageStart=$(($rootfsStart + $rootfsSize)) dtbStart=$(($rootfsStart + $rootfsSize))
${if cfg.compressRoot ${if cfg.compressRoot
then '' then ''
lzma -z9cv ${o.rootfs} > rootfs.lz lzma -z9cv ${o.rootfs} > rootfs.lz
@ -129,30 +128,22 @@ in {
dtbSize=$(binsize ./dtb ) dtbSize=$(binsize ./dtb )
${stripAndZip} ${if cfg.appendDTB then ''
cat ${../../pkgs/kernel/kernel_fdt.its} > mkimage.its imageStart=$dtbStart
cat << _VARS >> mkimage.its # re-package image with updated dtb
/ { cat ${o.kernel} > vmlinux.elf
images { ${objcopy} --update-section .appended_dtb=dtb vmlinux.elf
kernel { ${stripAndZip}
description = "${arch} Liminix kernel"; mkimage -A ${arch} -O linux -T kernel -C lzma -a $(hex ${toString hw.loadAddress}) -e $(hex ${toString hw.entryPoint}) -n '${lib.toUpper arch} Liminix Linux tftpboot' -d vmlinux.bin.lzma image
data = /incbin/("./vmlinux.bin.lzma"); # dtc -I dtb -O dts -o /dev/stdout dtb | grep -A10 chosen ; exit 1
load = <0x${lib.toHexString hw.loadAddress}>; tftpcmd="tftpboot $(hex $imageStart) result/image "
entry = <0x${lib.toHexString hw.entryPoint}>; bootcmd="bootm $(hex $imageStart)"
arch = "${arch}"; '' else ''
compression = "lzma"; imageStart=$(($dtbStart + $dtbSize))
}; tftpcmd="tftpboot $(hex $imageStart) result/image; tftpboot $(hex $dtbStart) result/dtb "
fdt-1 { ln -s ${image} image
description = "${arch} Liminix DTB"; bootcmd="${bootCommand} $(hex $imageStart) - $(hex $dtbStart)"
data = /incbin/("./dtb"); ''}
arch = "${arch}";
};
};
};
_VARS
mkimage -f mkimage.its image
tftpcmd="tftpboot $(hex $imageStart) result/image "
bootcmd="bootm $(hex $imageStart)"
cat > boot.scr << EOF cat > boot.scr << EOF
setenv serverip ${cfg.serverip} setenv serverip ${cfg.serverip}
@ -166,7 +157,7 @@ _VARS
then "lzmadec $(hex $rootfsLzStart) $(hex $rootfsStart); " then "lzmadec $(hex $rootfsLzStart) $(hex $rootfsStart); "
else "" else ""
} $bootcmd } $bootcmd
EOF EOF
''; '';
}; };