Skip to content
Snippets Groups Projects
Select Git revision
  • 912ab30d3a95bd244e9205d09fb04049bb020e33
  • v2018.2.x default
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
42 results

0015-ar71xx-fix-wndr3700_board_detect-for-some-NETGEAR-WNDR3700v2.patch

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    0090-firmware-utils-add-support-for-TL-WR1043ND-v4-to-mktplinkfw.patch 1.27 KiB
    From: Matthias Schiffer <mschiffer@universe-factory.net>
    Date: Sat, 10 Dec 2016 20:45:50 +0100
    Subject: firmware-utils: add support for TL-WR1043ND v4 to mktplinkfw
    
    The TL-WR1043ND v4 uses a kernel image with a mktplinkfw header inside the
    os-image partition of a tplink-safeloader image.
    
    Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
    
    Backport of LEDE 51740990cd1d5375a566454e692b479986cba958
    
    diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c
    index 34e6546a2d7db72748146ef233830c2e8de9ce97..fbf89609c22dd0fb50c4c8656141c8a8b9c29817 100644
    --- a/tools/firmware-utils/src/mktplinkfw.c
    +++ b/tools/firmware-utils/src/mktplinkfw.c
    @@ -178,6 +178,20 @@ static struct flash_layout layouts[] = {
     		.kernel_ep	= 0xc0000000,
     		.rootfs_ofs	= 0x2a0000,
     	}, {
    +		/*
    +			Some devices (e.g. TL-WR1043 v4) use a mktplinkfw kernel image
    +			embedded in a tplink-safeloader image as os-image partition.
    +
    +			We use a 1.5MB partition for the compressed kernel, which should
    +			be sufficient, but not too wasteful (the flash of the TL-WR1043 v4
    +			has 16MB in total).
    +		*/
    +		.id		= "16Msafeloader",
    +		.fw_max_len	= 0x180000,
    +		.kernel_la	= 0x80060000,
    +		.kernel_ep	= 0x80060000,
    +		.rootfs_ofs	= 0,
    +	}, {
     		/* terminating entry */
     	}
     };