From 8cd068ea6825c476d63854d3f5d4955cf4309362 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Sat, 4 Jan 2025 23:48:19 +0000 Subject: [PATCH] belkin rt3200: set tftp loadAddress to match u-boot the old value of 0x4007ff28 was originally copied from something upstreamy but I have no record of what. 0x48000000 is $loadaddr in u-boot so let's use that instead --- devices/belkin-rt3200/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devices/belkin-rt3200/default.nix b/devices/belkin-rt3200/default.nix index e5afdf7..e991c10 100644 --- a/devices/belkin-rt3200/default.nix +++ b/devices/belkin-rt3200/default.nix @@ -226,7 +226,7 @@ }; boot = { commandLine = [ "console=ttyS0,115200" ]; - tftp.loadAddress = lim.parseInt "0x4007ff28"; + tftp.loadAddress = lim.parseInt "0x48000000"; imageFormat = "fit"; loader.fit.enable = lib.mkDefault true; # override this if you are building tftpboot };