From 3ed1564235fd109941eb7ffb5e0b882a6bfa0a6b Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 7 Sep 2024 23:38:18 +0200 Subject: [PATCH] feat(recovery): bump to 20MB the TFTP phram size Otherwise, this will fail to boot on a modern closure. Signed-off-by: Raito Bezarius --- devices/zyxel-nwa50ax/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devices/zyxel-nwa50ax/default.nix b/devices/zyxel-nwa50ax/default.nix index 393dcac..a7834dc 100644 --- a/devices/zyxel-nwa50ax/default.nix +++ b/devices/zyxel-nwa50ax/default.nix @@ -222,8 +222,8 @@ imageFormat = "fit"; tftp = { - # 5MB is nice. - freeSpaceBytes = 5 * 1024 * 1024; + # 20MB is pretty good on this device as we have plenty of RAM. + freeSpaceBytes = 20 * 1024 * 1024; appendDTB = true; loadAddress = lim.parseInt "0x2000000"; };