| 1 | # |
| 2 | # Copyright (C) 2008-2011 OpenWrt.org |
| 3 | # |
| 4 | # This is free software, licensed under the GNU General Public License v2. |
| 5 | # See /LICENSE for more information. |
| 6 | # |
| 7 | include $(TOPDIR)/rules.mk |
| 8 | include $(INCLUDE_DIR)/image.mk |
| 9 | |
| 10 | JFFS2_BLOCKSIZE = 64k 128k 256k |
| 11 | |
| 12 | define imgname |
| 13 | $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(patsubst jffs2-%,jffs2,$(patsubst squashfs-%,squashfs,$(1))) |
| 14 | endef |
| 15 | |
| 16 | define rootfs_align |
| 17 | $(patsubst %-256k,0x40000,$(patsubst %-128k,0x20000,$(patsubst %-64k,0x10000,$(patsubst squashfs-%,0x4,$(1))))) |
| 18 | endef |
| 19 | |
| 20 | define sysupname |
| 21 | $(call imgname,$(1),$(2))-sysupgrade.bin |
| 22 | endef |
| 23 | |
| 24 | define factoryname |
| 25 | $(call imgname,$(1),$(2))-factory.bin |
| 26 | endef |
| 27 | |
| 28 | COMMA:=, |
| 29 | |
| 30 | define mkcmdline |
| 31 | $(if $(1),board=$(1) )$(if $(2),console=$(2)$(COMMA)$(3)) |
| 32 | endef |
| 33 | |
| 34 | SINGLE_PROFILES:= |
| 35 | |
| 36 | define SingleProfile |
| 37 | define Image/Build/Profile/$(3) |
| 38 | $$(call Image/Build/Template/$(2)/$$(1),$(1),$(4),$$(call mkcmdline,$(5),$(6),$(7)),$(8),$(9),$(10),$(11),$(12)) |
| 39 | endef |
| 40 | SINGLE_PROFILES += $(3) |
| 41 | endef |
| 42 | |
| 43 | define MultiProfile |
| 44 | define Image/Build/Profile/$(1) |
| 45 | $(foreach p,$(2), |
| 46 | $$(call Image/Build/Profile/$p,$$(1)) |
| 47 | ) |
| 48 | endef |
| 49 | endef |
| 50 | |
| 51 | LOADER_MAKE := $(NO_TRACE_MAKE) -C lzma-loader KDIR=$(KDIR) |
| 52 | |
| 53 | KDIR_TMP:=$(KDIR)/tmp |
| 54 | VMLINUX:=$(BIN_DIR)/$(IMG_PREFIX)-vmlinux |
| 55 | UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage |
| 56 | fs_squash:=squashfs-only |
| 57 | fs_64k:=64k |
| 58 | fs_64kraw:=64kraw |
| 59 | fs_128k:=128k |
| 60 | fs_256k:=256k |
| 61 | ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) |
| 62 | fs_squash:=initramfs |
| 63 | fs_64k:=initramfs |
| 64 | fs_64kraw:=initramfs |
| 65 | fs_128k:=initramfs |
| 66 | fs_256k:=initramfs |
| 67 | VMLINUX:=$(BIN_DIR)/$(IMG_PREFIX)-vmlinux-initramfs |
| 68 | UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage-initramfs |
| 69 | endif |
| 70 | |
| 71 | define CompressLzma |
| 72 | $(STAGING_DIR_HOST)/bin/lzma e $(1) -lc1 -lp2 -pb2 $(3) $(2) |
| 73 | endef |
| 74 | |
| 75 | define PatchKernelLzma |
| 76 | cp $(KDIR)/vmlinux $(KDIR_TMP)/vmlinux-$(1) |
| 77 | $(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR_TMP)/vmlinux-$(1) "$(strip $(2))" |
| 78 | $(call CompressLzma,$(KDIR_TMP)/vmlinux-$(1),$(KDIR_TMP)/vmlinux-$(1).bin.lzma,$(3)) |
| 79 | endef |
| 80 | |
| 81 | define PatchKernelGzip |
| 82 | cp $(KDIR)/vmlinux $(KDIR_TMP)/vmlinux-$(1) |
| 83 | $(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR_TMP)/vmlinux-$(1) "$(strip $(2))" |
| 84 | gzip -9 -c $(KDIR_TMP)/vmlinux-$(1) > $(KDIR_TMP)/vmlinux-$(1).bin.gz |
| 85 | endef |
| 86 | |
| 87 | define MkuImage |
| 88 | mkimage -A mips -O linux -T kernel -a 0x80060000 -C $(1) $(2) \ |
| 89 | -e 0x80060000 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \ |
| 90 | -d $(3) $(4) |
| 91 | endef |
| 92 | |
| 93 | define MkuImageLzma |
| 94 | $(call PatchKernelLzma,$(1),$(2),$(3)) |
| 95 | $(call MkuImage,lzma,,$(KDIR_TMP)/vmlinux-$(1).bin.lzma,$(KDIR_TMP)/vmlinux-$(1).uImage) |
| 96 | endef |
| 97 | |
| 98 | define MkuImageLzma/initramfs |
| 99 | $(call PatchKernelLzma,$(1),$(2)) |
| 100 | $(call MkuImage,lzma,,$(KDIR_TMP)/vmlinux-$(1).bin.lzma,$(call imgname,initramfs,$(1))-uImage.bin) |
| 101 | endef |
| 102 | |
| 103 | define MkuImageGzip |
| 104 | $(call PatchKernelGzip,$(1),$(2)) |
| 105 | $(call MkuImage,gzip,,$(KDIR_TMP)/vmlinux-$(1).bin.gz,$(KDIR_TMP)/vmlinux-$(1).uImage) |
| 106 | endef |
| 107 | |
| 108 | define MkuImageGzip/initramfs |
| 109 | $(call PatchKernelGzip,$(1),$(2)) |
| 110 | $(call MkuImage,gzip,,$(KDIR_TMP)/vmlinux-$(1).bin.gz,$(call imgname,initramfs,$(1))-uImage.bin) |
| 111 | endef |
| 112 | |
| 113 | define MkuImageOKLI |
| 114 | $(call MkuImage,lzma,-M 0x4f4b4c49,$(KDIR)/vmlinux.bin.lzma,$(KDIR_TMP)/vmlinux-$(1).okli) |
| 115 | endef |
| 116 | |
| 117 | define CatFiles |
| 118 | if [ `stat -c%s "$(1)"` -gt $(2) ]; then \ |
| 119 | echo "Warning: $(1) is too big"; \ |
| 120 | else if [ `stat -c%s $(3)` -gt $(4) ]; then \ |
| 121 | echo "Warning: $(3) is too big"; \ |
| 122 | else \ |
| 123 | ( dd if=$(1) bs=$(2) conv=sync; dd if=$(3) ) > $(5); \ |
| 124 | fi; fi |
| 125 | endef |
| 126 | |
| 127 | define Sysupgrade/KR |
| 128 | $(call CatFiles,$(2),$(3),$(KDIR)/root.$(1),$(4),$(call sysupname,$(1),$(5))) |
| 129 | endef |
| 130 | |
| 131 | define Sysupgrade/KRuImage |
| 132 | $(call CatFiles,$(KDIR_TMP)/vmlinux-$(2).uImage,$(3),$(KDIR)/root.$(1),$(4),$(call sysupname,$(1),$(2))) |
| 133 | endef |
| 134 | |
| 135 | define Sysupgrade/RKuImage |
| 136 | $(call CatFiles,$(KDIR)/root.$(1),$(4),$(KDIR_TMP)/vmlinux-$(2).uImage,$(3),$(call sysupname,$(1),$(2))) |
| 137 | endef |
| 138 | |
| 139 | define Image/BuildLoader |
| 140 | -rm -rf $(KDIR)/lzma-loader |
| 141 | $(LOADER_MAKE) LOADER=loader-$(1).$(2) KERNEL_CMDLINE="$(3)"\ |
| 142 | LZMA_TEXT_START=0x80a00000 LOADADDR=0x80060000 \ |
| 143 | LOADER_DATA="$(KDIR)/vmlinux.bin.lzma" BOARD="$(1)" \ |
| 144 | compile loader.$(2) |
| 145 | endef |
| 146 | |
| 147 | define Image/BuildLoaderAlone |
| 148 | -rm -rf $(KDIR)/lzma-loader |
| 149 | $(LOADER_MAKE) LOADER=loader-$(1).$(2) KERNEL_CMDLINE="$(3)" \ |
| 150 | LZMA_TEXT_START=0x80a00000 LOADADDR=0x80060000 \ |
| 151 | BOARD="$(1)" FLASH_OFFS=$(4) FLASH_MAX=$(5) \ |
| 152 | compile loader.$(2) |
| 153 | endef |
| 154 | |
| 155 | define Build/Clean |
| 156 | $(LOADER_MAKE) clean |
| 157 | endef |
| 158 | |
| 159 | |
| 160 | alfa_ap96_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,256k(u-boot-env)ro,13312k(rootfs),2048k(kernel),512k(caldata)ro,15360k@0x80000(firmware) |
| 161 | alfa_mtdlayout_8M=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,6144k(rootfs),1600k(kernel),64k(nvram),64k(art)ro,7744k@0x50000(firmware) |
| 162 | all0258n_mtdlayout=mtdparts=spi0.0:256k(u-boot),64k(u-boot-env),1024k(kernel),5248k(rootfs),1536k(failsafe),64k(art),6272k@0x50000(firmware) |
| 163 | all0315n_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,256k(u-boot-env),1024k(kernel),12544k(rootfs),2048k(failsafe),256k(art)ro,13568k@0x80000(firmware) |
| 164 | ap96_mtdlayout=mtdparts=spi0.0:192k(u-boot)ro,64k(u-boot-env)ro,6144k(rootfs),1728k(kernel),64k(art)ro,7872k@0x40000(firmware) |
| 165 | ap113_mtd_layout=mtdparts=spi0.0:64k(u-boot),3008k(rootfs),896k(uImage),64k(NVRAM),64k(ART),3904k@0x10000(firmware) |
| 166 | ap121_mtdlayout_2M=mtdparts=spi0.0:64k(u-boot)ro,1216k(rootfs),704k(kernel),64k(art)ro,1920k@0x10000(firmware) |
| 167 | ap121_mtdlayout_4M=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,2752k(rootfs),896k(kernel),64k(nvram),64k(art)ro,3648k@0x50000(firmware) |
| 168 | ap136_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,6336k(rootfs),1408k(kernel),64k(mib0),64k(art)ro,7744k@0x50000(firmware) |
| 169 | cameo7240_mtdlayout=mtdparts=spi0.0:192k(u-boot)ro,64k(nvram)ro,960k(kernel),2752k(rootfs),64k(mac)ro,64k(art)ro,3712k@0x40000(firmware) |
| 170 | cameo913x_mtdlayout=mtdparts=spi0.0:128k(u-boot)ro,64k(config)ro,960k(kernel),2880k(rootfs),64k(art)ro,3840k@0x30000(firmware) |
| 171 | cameo933x_mtdlayout=mtdparts=spi0.0:64k(u-boot)ro,64k(art)ro,64k(mac)ro,64k(nvram)ro,192k(language)ro,896k(kernel),2752k(rootfs),3648k@0x70000(firmware) |
| 172 | cap4200ag_mtdlayout=mtdparts=spi0.0:256k(u-boot),64k(u-boot-env),320k(custom)ro,1536k(kernel),12096k(rootfs),2048k(failsafe),64k(art),13632k@0xa0000(firmware) |
| 173 | db120_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,6336k(rootfs),1408k(kernel),64k(nvram),64k(art)ro,7744k@0x50000(firmware) |
| 174 | dir825b1_mtdlayout=mtdparts=spi0.0:256k(uboot)ro,64k(config)ro,1024k(kernel),5184k(rootfs),64k(caldata)ro,1600k(unknown)ro,6208k@0x50000(firmware),64k@0x7f0000(caldata_copy) |
| 175 | dir825b1_mtdlayout_fat=mtdparts=spi0.0:256k(uboot)ro,64k(config)ro,1024k(kernel),6784k(rootfs),64k(caldata)ro,7808k@0x50000(firmware),64k@0x660000(caldata_orig),6208k@0x50000(firmware_orig) |
| 176 | ew-dorin_mtdlayout_4M=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env),1024k(kernel),2688k(rootfs),64k(art),3712k@0x50000(firmware) |
| 177 | dlrtdev_mtdlayout=mtdparts=spi0.0:256k(uboot)ro,64k(config)ro,1024k(kernel),5184k(rootfs),64k(caldata)ro,640k(certs),960k(unknown)ro,6208k@0x50000(firmware),64k@0x7f0000(caldata_copy) |
| 178 | dlrtdev_mtdlayout_fat=mtdparts=spi0.0:256k(uboot)ro,64k(config)ro,1024k(kernel),6544k(rootfs),640k(certs),64k(caldata)ro,7168k@0x50000(firmware),64k@0x660000(caldata_orig),6208k@0x50000(firmware_orig) |
| 179 | pb92_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,2752k(rootfs),896k(kernel),64k(nvram),64k(art)ro,3648k@0x50000(firmware) |
| 180 | planex_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,960k(kernel),6784k(rootfs),128k(art)ro,7744k@0x50000(firmware) |
| 181 | ubntxm_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,1024k(kernel),6528k(rootfs),256k(cfg)ro,64k(EEPROM)ro,7552k@0x50000(firmware) |
| 182 | uap_pro_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,1536k(kernel),14208k(rootfs),256k(cfg)ro,64k(EEPROM)ro,15744k@0x50000(firmware) |
| 183 | ubdev_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,1024k(kernel),6464k(rootfs),64k(certs),256k(cfg)ro,64k(EEPROM)ro,7488k@0x50000(firmware) |
| 184 | whrhpg300n_mtdlayout=mtdparts=spi0.0:248k(u-boot)ro,8k(u-boot-env)ro,960k(kernel),2816k(rootfs),64k(art)ro,3712k@0x40000(firmware) |
| 185 | wndr3700_mtdlayout=mtdparts=spi0.0:320k(u-boot)ro,128k(u-boot-env)ro,1024k(kernel),6656k(rootfs),64k(art)ro,7680k@0x70000(firmware) |
| 186 | wndr3700v2_mtdlayout=mtdparts=spi0.0:320k(u-boot)ro,128k(u-boot-env)ro,1024k(kernel),14848k(rootfs),64k(art)ro,15872k@0x70000(firmware) |
| 187 | wndr4300_mtdlayout=mtdparts=ar934x-nfc:256k(u-boot)ro,256k(u-boot-env)ro,256k(caldata),512k(pot),2048k(language),512k(config),3072k(traffic_meter),1152k(kernel),24448k(rootfs),25600k@0x6c0000(firmware),256k(caldata_backup),-(reserved) |
| 188 | zcn1523h_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,6208k(rootfs),1472k(kernel),64k(configure)ro,64k(mfg)ro,64k(art)ro,7680k@0x50000(firmware) |
| 189 | |
| 190 | define Image/BuildKernel |
| 191 | cp $(KDIR)/vmlinux.elf $(VMLINUX).elf |
| 192 | cp $(KDIR)/vmlinux $(VMLINUX).bin |
| 193 | dd if=$(KDIR)/vmlinux.bin.lzma of=$(VMLINUX).lzma bs=65536 conv=sync |
| 194 | dd if=$(KDIR)/vmlinux.bin.gz of=$(VMLINUX).gz bs=65536 conv=sync |
| 195 | $(call MkuImage,gzip,,$(KDIR)/vmlinux.bin.gz,$(UIMAGE)-gzip.bin) |
| 196 | $(call MkuImage,lzma,,$(KDIR)/vmlinux.bin.lzma,$(UIMAGE)-lzma.bin) |
| 197 | cp $(KDIR)/loader-generic.elf $(VMLINUX)-lzma.elf |
| 198 | -mkdir -p $(KDIR_TMP) |
| 199 | $(call Image/Build/Initramfs) |
| 200 | endef |
| 201 | |
| 202 | define Image/Build/WRT400N |
| 203 | $(call MkuImageLzma,$(2),$(3)) |
| 204 | $(call Sysupgrade/KRuImage,$(1),$(2),1310720,6488064) |
| 205 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 206 | wrt400n $(KDIR_TMP)/vmlinux-$(2).uImage $(KDIR)/root.$(1) $(call factoryname,$(1),$(2)); \ |
| 207 | fi |
| 208 | endef |
| 209 | |
| 210 | define Image/Build/DIR825B1 |
| 211 | $(call MkuImageLzma,$(2),$(3) $(dir825b1_mtdlayout)) |
| 212 | $(call Sysupgrade/KRuImage,$(1),$(2),1048576,5308416) |
| 213 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 214 | ( \ |
| 215 | dd if=$(call sysupname,$(1),$(2)); \ |
| 216 | echo -n "$(4)"; \ |
| 217 | ) > $(call imgname,$(1),$(2))-backup-loader.bin; \ |
| 218 | if [ `stat -c%s $(call sysupname,$(1),$(2))` -gt 4194304 ]; then \ |
| 219 | echo "Warning: $(call sysupname,$(1),$(2)) is too big"; \ |
| 220 | else \ |
| 221 | ( \ |
| 222 | dd if=$(call sysupname,$(1),$(2)) bs=4096k conv=sync; \ |
| 223 | echo -n "$(5)"; \ |
| 224 | ) > $(call factoryname,$(1),$(2)); \ |
| 225 | fi; \ |
| 226 | fi |
| 227 | $(call MkuImageLzma,$(2)-fat,$(3) $(dir825b1_mtdlayout_fat)) |
| 228 | $(call CatFiles,$(KDIR_TMP)/vmlinux-$(2)-fat.uImage,1048576,$(KDIR)/root.$(1),6946816,$(KDIR_TMP)/$(2)-fat.bin) |
| 229 | if [ -e "$(KDIR_TMP)/$(2)-fat.bin" ]; then \ |
| 230 | echo -n "" > $(KDIR_TMP)/$(2)-fat.dummy; \ |
| 231 | sh $(TOPDIR)/scripts/combined-image.sh \ |
| 232 | "$(KDIR_TMP)/$(2)-fat.bin" \ |
| 233 | "$(KDIR_TMP)/$(2)-fat.dummy" \ |
| 234 | $(call sysupname,$(1),$(2)-fat); \ |
| 235 | fi |
| 236 | endef |
| 237 | |
| 238 | define Image/Build/DLRTDEV |
| 239 | $(call MkuImageLzma,$(2),$(3) $(dlrtdev_mtdlayout)) |
| 240 | $(call Sysupgrade/KRuImage,$(1),$(2),1048576,5308416) |
| 241 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 242 | ( \ |
| 243 | dd if=$(call sysupname,$(1),$(2)); \ |
| 244 | echo -n "$(4)"; \ |
| 245 | ) > $(call imgname,$(1),$(2))-backup-loader.bin; \ |
| 246 | if [ `stat -c%s $(call sysupname,$(1),$(2))` -gt 4194304 ]; then \ |
| 247 | echo "Warning: $(call sysupname,$(1),$(2)) is too big"; \ |
| 248 | else \ |
| 249 | ( \ |
| 250 | dd if=$(call sysupname,$(1),$(2)) bs=4096k conv=sync; \ |
| 251 | echo -n "$(5)"; \ |
| 252 | ) > $(call factoryname,$(1),$(2)); \ |
| 253 | fi; \ |
| 254 | fi |
| 255 | $(call MkuImageLzma,$(2)-fat,$(3) $(dlrtdev_mtdlayout_fat)) |
| 256 | $(call CatFiles,$(KDIR_TMP)/vmlinux-$(2)-fat.uImage,1048576,$(KDIR)/root.$(1),6946816,$(KDIR_TMP)/$(2)-fat.bin) |
| 257 | if [ -e "$(KDIR_TMP)/$(2)-fat.bin" ]; then \ |
| 258 | echo -n "" > $(KDIR_TMP)/$(2)-fat.dummy; \ |
| 259 | sh $(TOPDIR)/scripts/combined-image.sh \ |
| 260 | "$(KDIR_TMP)/$(2)-fat.bin" \ |
| 261 | "$(KDIR_TMP)/$(2)-fat.dummy" \ |
| 262 | $(call sysupname,$(1),$(2)-fat); \ |
| 263 | fi |
| 264 | endef |
| 265 | |
| 266 | define Image/Build/WZRHPG30XNH |
| 267 | $(call MkuImageLzma,$(2),$(3)) |
| 268 | $(call Sysupgrade/KRuImage,$(1),$(2),1048576,31850496) |
| 269 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 270 | ( \ |
| 271 | echo -n -e "# Airstation Public Fmt1\x00\x00\x00\x00\x00\x00\x00\x00"; \ |
| 272 | dd if=$(call sysupname,$(1),$(2)); \ |
| 273 | ) > $(call imgname,$(1),$(2))-tftp.bin; \ |
| 274 | buffalo-enc -p $(4) -v 1.99 \ |
| 275 | -i $(call sysupname,$(1),$(2)) \ |
| 276 | -o $(KDIR_TMP)/$(2).enc; \ |
| 277 | buffalo-tag -b $(4) -p $(4) -a ath -v 1.99 -m 1.01 -l mlang8 \ |
| 278 | -w 3 -c 0x80041000 -d 0x801e8000 -f 1 -r M_ \ |
| 279 | -i $(KDIR_TMP)/$(2).enc \ |
| 280 | -o $(call factoryname,$(1),$(2)); \ |
| 281 | fi |
| 282 | endef |
| 283 | |
| 284 | define Image/Build/WHRHPG300N |
| 285 | $(call MkuImageLzma,$(2),$(3) $(4)) |
| 286 | $(call Sysupgrade/KRuImage,$(1),$(2),983040,2883584) |
| 287 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 288 | ( \ |
| 289 | echo -n -e "# Airstation Public Fmt1\x00\x00\x00\x00\x00\x00\x00\x00"; \ |
| 290 | dd if=$(call sysupname,$(1),$(2)); \ |
| 291 | ) > $(call imgname,$(1),$(2))-tftp.bin; \ |
| 292 | buffalo-enc -p $(5) -v 1.99 \ |
| 293 | -i $(call sysupname,$(1),$(2)) \ |
| 294 | -o $(KDIR_TMP)/$(2).enc; \ |
| 295 | buffalo-tag -b $(5) -p $(5) -a ath -v 1.99 -m 1.01 -l mlang8 \ |
| 296 | -w 3 -c 0x80041000 -d 0x801e8000 -f 1 -r M_ \ |
| 297 | -i $(KDIR_TMP)/$(2).enc \ |
| 298 | -o $(call factoryname,$(1),$(2)); \ |
| 299 | fi |
| 300 | endef |
| 301 | |
| 302 | define Image/Build/WHRHPG300N/initramfs |
| 303 | $(call MkuImageLzma/initramfs,$(2),$(3) $(4)) |
| 304 | endef |
| 305 | |
| 306 | define Image/Build/Cameo |
| 307 | $(call MkuImageLzma,$(2),$(3) $(4)) |
| 308 | $(call Sysupgrade/KRuImage,$(1),$(2),$(5),$(6)) |
| 309 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 310 | ( \ |
| 311 | dd if=$(KDIR_TMP)/vmlinux-$(2).uImage bs=$(5) conv=sync; \ |
| 312 | dd if=$(KDIR)/root.$(1) bs=$(6) conv=sync; \ |
| 313 | echo -n $(7); \ |
| 314 | ) > $(call factoryname,$(1),$(2)); \ |
| 315 | fi |
| 316 | endef |
| 317 | |
| 318 | define Image/Build/CameoHornet |
| 319 | $(call MkuImageLzma,$(2),$(3) $(4)) |
| 320 | $(call Sysupgrade/KRuImage,$(1),$(2),$(5),$(6)) |
| 321 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 322 | mkcameofw -M HORNET -R "DEF" -S $(7) -V "1.99" \ |
| 323 | -K $(5) -I $$$$(($(5)+$(6))) \ |
| 324 | -k $(KDIR_TMP)/vmlinux-$(2).uImage \ |
| 325 | -r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) \ |
| 326 | -o $(call factoryname,$(1),$(2)); \ |
| 327 | fi |
| 328 | endef |
| 329 | |
| 330 | define Image/Build/Cameo913x |
| 331 | $(call Image/Build/Cameo,$(1),$(2),$(3),$(cameo913x_mtdlayout),983040,2949120,$(4)) |
| 332 | endef |
| 333 | |
| 334 | define Image/Build/Cameo913x/initramfs |
| 335 | $(call MkuImageLzma/initramfs,$(2),$(3) $(cameo913x_mtdlayout)) |
| 336 | endef |
| 337 | |
| 338 | define Image/Build/Cameo7240 |
| 339 | $(call Image/Build/Cameo,$(1),$(2),$(3),$(cameo7240_mtdlayout),983040,2818048,$(4)) |
| 340 | endef |
| 341 | |
| 342 | define Image/Build/Cameo7240/initramfs |
| 343 | $(call MkuImageLzma/initramfs,$(2),$(3) $(cameo7240_mtdlayout)) |
| 344 | endef |
| 345 | |
| 346 | define Image/Build/Cameo933x |
| 347 | $(call Image/Build/CameoHornet,$(1),$(2),$(3),$(cameo933x_mtdlayout),917504,2818048,$(4)) |
| 348 | endef |
| 349 | |
| 350 | define Image/Build/Cameo933x/initramfs |
| 351 | $(call MkuImageLzma/initramfs,$(2),$(3) $(cameo933x_mtdlayout)) |
| 352 | endef |
| 353 | |
| 354 | define Image/Build/Ath |
| 355 | $(call Sysupgrade/$(7),$(1),$(2),$(5),$(6)) |
| 356 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 357 | dd if=$(KDIR_TMP)/vmlinux-$(2).uImage \ |
| 358 | of=$(call imgname,kernel,$(2)).bin bs=64k conv=sync; \ |
| 359 | dd if=$(KDIR)/root.$(1) \ |
| 360 | of=$(call imgname,$(1),$(2)-rootfs).bin bs=128k conv=sync; \ |
| 361 | fi |
| 362 | endef |
| 363 | |
| 364 | define Image/Build/AthGzip |
| 365 | $(call MkuImageGzip,$(2),$(3) $(4)) |
| 366 | $(call Image/Build/Ath,$(1),$(2),$(3),$(4),$(5),$(6),$(7)) |
| 367 | endef |
| 368 | |
| 369 | define Image/Build/AthGzip/initramfs |
| 370 | $(call MkuImageGzip/initramfs,$(2),$(3) $(4)) |
| 371 | endef |
| 372 | |
| 373 | define Image/Build/AthLzma |
| 374 | $(call MkuImageLzma,$(2),$(3) $(4)) |
| 375 | $(call Image/Build/Ath,$(1),$(2),$(3),$(4),$(5),$(6),$(7)) |
| 376 | endef |
| 377 | |
| 378 | define Image/Build/AthLzma/initramfs |
| 379 | $(call MkuImageLzma/initramfs,$(2),$(3) $(4)) |
| 380 | endef |
| 381 | |
| 382 | define Image/Build/PB4X |
| 383 | $(call PatchKernelLzma,$(2),$(3)) |
| 384 | dd if=$(KDIR_TMP)/vmlinux-$(2).bin.lzma \ |
| 385 | of=$(call imgname,kernel,$(2)).bin bs=64k conv=sync |
| 386 | dd if=$(KDIR)/root.$(1) \ |
| 387 | of=$(call imgname,$(1),$(2)-rootfs).bin bs=128k conv=sync |
| 388 | -sh $(TOPDIR)/scripts/combined-image.sh \ |
| 389 | "$(call imgname,kernel,$(2)).bin" \ |
| 390 | "$(call imgname,$(1),$(2)-rootfs).bin" \ |
| 391 | $(call sysupname,$(1),$(2)) |
| 392 | endef |
| 393 | |
| 394 | |
| 395 | define Image/Build/MyLoader |
| 396 | $(call PatchKernelLzma,$(2),$(3)) |
| 397 | -$(STAGING_DIR_HOST)/bin/mkmylofw -B $(2) -s $(4) \ |
| 398 | -p0x030000:0xe0000:al:0x80060000:kernel:$(KDIR_TMP)/vmlinux-$(2).bin.lzma \ |
| 399 | -p0x110000:0:::rootfs:$(KDIR)/root.$(1) \ |
| 400 | $(call imgname,$(1),$(2))-$(5)-factory.img |
| 401 | endef |
| 402 | |
| 403 | define Image/Build/UAPPRO |
| 404 | $(call MkuImageLzma,$(2),$(3) $(uap_pro_mtdlayout)) |
| 405 | -rm -rf $(KDIR_TMP)/$(2) |
| 406 | mkdir -p $(KDIR_TMP)/$(2)/image |
| 407 | cp $(KDIR_TMP)/vmlinux-$(2).uImage $(KDIR_TMP)/$(2)/image/kernel0 |
| 408 | $(STAGING_DIR_HOST)/bin/mkfs.jffs2 \ |
| 409 | --pad --big-endian --squash-uids -v -e 64KiB \ |
| 410 | -o $(KDIR_TMP)/$(2)-kernel.jffs2 \ |
| 411 | -d $(KDIR_TMP)/$(2)/image \ |
| 412 | 2>&1 1>/dev/null | awk '/^.+$$$$/' |
| 413 | -rm -rf $(KDIR_TMP)/$(2) |
| 414 | $(STAGING_DIR_HOST)/bin/padjffs2 $(KDIR_TMP)/$(2)-kernel.jffs2 64 |
| 415 | $(call CatFiles,$(KDIR_TMP)/$(2)-kernel.jffs2,1572864,$(KDIR)/root.$(1),14548992,$(call sysupname,$(1),$(2))) |
| 416 | -$(STAGING_DIR_HOST)/bin/mkfwimage2 -f 0x9f000000 \ |
| 417 | -v $(5).$(6).v6.0.0-OpenWrt-$(REVISION) \ |
| 418 | -p jffs2:0x50000:0xf60000:0:0:$(call sysupname,$(1),$(2)) \ |
| 419 | -o $(call factoryname,$(1),$(2)) |
| 420 | -rm -f $(KDIR_TMP)/$(2)-kernel.jffs2 |
| 421 | endef |
| 422 | |
| 423 | define Image/Build/UAPPRO/initramfs |
| 424 | $(call MkuImageLzma/initramfs,$(2),$(3) $(uap_pro_mtdlayout)) |
| 425 | endef |
| 426 | |
| 427 | define Image/Build/UBNTXM |
| 428 | $(call MkuImageLzma,$(2),$(3) $(ubntxm_mtdlayout)) |
| 429 | $(call Sysupgrade/KRuImage,$(1),$(2),1048576,6684672) |
| 430 | dd if=$(KDIR_TMP)/vmlinux-$(2).uImage of=$(KDIR_TMP)/vmlinux-$(2).uImage.bin bs=1024k conv=sync |
| 431 | -$(STAGING_DIR_HOST)/bin/mkfwimage \ |
| 432 | -B $(4) -v $(5).$(6).v6.0.0-OpenWrt-$(REVISION) \ |
| 433 | -k $(KDIR_TMP)/vmlinux-$(2).uImage.bin \ |
| 434 | -r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) \ |
| 435 | -o $(call factoryname,$(1),$(2)) |
| 436 | endef |
| 437 | |
| 438 | define Image/Build/UBDEV |
| 439 | $(call MkuImageLzma,$(2),$(3) $(ubdev_mtdlayout)) |
| 440 | $(call Sysupgrade/KRuImage,$(1),$(2),1048576,6684672) |
| 441 | dd if=$(KDIR_TMP)/vmlinux-$(2).uImage of=$(KDIR_TMP)/vmlinux-$(2).uImage.bin bs=1024k conv=sync |
| 442 | -$(STAGING_DIR_HOST)/bin/mkfwimage \ |
| 443 | -B $(4) -v $(5).$(6).v6.0.0-OpenWrt-$(REVISION) \ |
| 444 | -k $(KDIR_TMP)/vmlinux-$(2).uImage.bin \ |
| 445 | -r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) \ |
| 446 | -o $(call factoryname,$(1),$(2)) |
| 447 | endef |
| 448 | |
| 449 | define Image/Build/UBNT |
| 450 | $(call PatchKernelLzma,$(2),$(3)) |
| 451 | dd if=$(KDIR_TMP)/vmlinux-$(2).bin.lzma of=$(KDIR_TMP)/vmlinux-$(2).lzma bs=64k conv=sync |
| 452 | -$(STAGING_DIR_HOST)/bin/mkfwimage \ |
| 453 | -B $(4) -v $(5).$(6).OpenWrt.$(REVISION) \ |
| 454 | -k $(KDIR_TMP)/vmlinux-$(2).lzma \ |
| 455 | -r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) \ |
| 456 | -o $(call factoryname,$(1),$(2)) |
| 457 | -sh $(TOPDIR)/scripts/combined-image.sh \ |
| 458 | "$(KDIR_TMP)/vmlinux-$(2).lzma" \ |
| 459 | "$(BIN_DIR)/$(IMG_PREFIX)-root.$(1)" \ |
| 460 | $(call sysupname,$(1),$(2)) |
| 461 | endef |
| 462 | |
| 463 | define Image/Build/Planex/loader |
| 464 | $(call Image/BuildLoaderAlone,$(1),gz,$(2) $(planex_mtdlayout),0x52000,0) |
| 465 | endef |
| 466 | |
| 467 | define Image/Build/Planex |
| 468 | [ -e "$(KDIR)/loader-$(2).gz" ] |
| 469 | $(call MkuImage,gzip,,$(KDIR)/loader-$(2).gz,$(KDIR_TMP)/vmlinux-$(2).uImage) |
| 470 | $(call MkuImageOKLI,$(2)) |
| 471 | ( \ |
| 472 | dd if=$(KDIR_TMP)/vmlinux-$(2).uImage bs=8k count=1 conv=sync; \ |
| 473 | dd if=$(KDIR_TMP)/vmlinux-$(2).okli; \ |
| 474 | ) > $(KDIR_TMP)/kernel-$(2).bin |
| 475 | $(call Sysupgrade/KR,$(1),$(KDIR_TMP)/kernel-$(2).bin,983040,6815744,$(2)) |
| 476 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 477 | $(STAGING_DIR_HOST)/bin/mkplanexfw \ |
| 478 | -B $(2) \ |
| 479 | -v 2.00.00 \ |
| 480 | -i $(call sysupname,$(1),$(2)) \ |
| 481 | -o $(call factoryname,$(1),$(2)); \ |
| 482 | fi |
| 483 | endef |
| 484 | |
| 485 | define Image/Build/ALFA |
| 486 | $(call MkuImageLzma,$(2),$(3) $(4)) |
| 487 | $(call Sysupgrade/RKuImage,$(1),$(2),$(5),$(6)) |
| 488 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 489 | rm -rf $(KDIR)/$(1); \ |
| 490 | mkdir -p $(KDIR)/$(1); \ |
| 491 | cd $(KDIR)/$(1); \ |
| 492 | cp $(KDIR_TMP)/vmlinux-$(2).uImage $(KDIR)/$(1)/$(7); \ |
| 493 | cp $(KDIR)/root.$(1) $(KDIR)/$(1)/$(8); \ |
| 494 | $(TAR) zcf $(call factoryname,$(1),$(2)) -C $(KDIR)/$(1) $(7) $(8); \ |
| 495 | ( \ |
| 496 | echo WRM7222C | dd bs=32 count=1 conv=sync; \ |
| 497 | echo -ne '\xfe'; \ |
| 498 | ) >> $(call factoryname,$(1),$(2)); \ |
| 499 | fi |
| 500 | endef |
| 501 | |
| 502 | define Image/Build/ALFA/initramfs |
| 503 | $(call MkuImageLzma/initramfs,$(2),$(3) $(4)) |
| 504 | endef |
| 505 | |
| 506 | define Image/Build/TPLINKOLD/loader |
| 507 | $(call Image/BuildLoaderAlone,$(1),gz,$(2),0x22000,0) |
| 508 | endef |
| 509 | |
| 510 | define Image/Build/TPLINKOLD |
| 511 | [ -e "$(KDIR)/loader-$(2).gz" ] |
| 512 | $(call MkuImageOKLI,$(2)) |
| 513 | ( \ |
| 514 | dd if=$(KDIR)/loader-$(2).gz bs=7680 count=1 conv=sync; \ |
| 515 | dd if=$(KDIR_TMP)/vmlinux-$(2).okli conv=sync; \ |
| 516 | ) > $(KDIR_TMP)/kernel-$(2).bin |
| 517 | -$(STAGING_DIR_HOST)/bin/mktplinkfw \ |
| 518 | -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION)\ |
| 519 | -k $(KDIR_TMP)/kernel-$(2).bin \ |
| 520 | -r $(KDIR)/root.$(1) \ |
| 521 | -o $(call factoryname,$(1),$(2)) |
| 522 | -$(STAGING_DIR_HOST)/bin/mktplinkfw \ |
| 523 | -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) -s\ |
| 524 | -k $(KDIR_TMP)/kernel-$(2).bin \ |
| 525 | -r $(KDIR)/root.$(1) \ |
| 526 | -o $(call sysupname,$(1),$(2)) |
| 527 | endef |
| 528 | |
| 529 | define Image/Build/TPLINKOLD/initramfs |
| 530 | $(call Image/BuildLoader,$(2),gz,$(3),0x80060000) |
| 531 | -$(STAGING_DIR_HOST)/bin/mktplinkfw -c \ |
| 532 | -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) -s\ |
| 533 | -k $(KDIR)/loader-$(2).gz \ |
| 534 | -o $(call imgname,$(1),$(2))-uImage.bin |
| 535 | endef |
| 536 | |
| 537 | define Image/Build/TPLINK/loader |
| 538 | $(call Image/BuildLoaderAlone,$(1),gz,$(2),0x22000,0) |
| 539 | endef |
| 540 | |
| 541 | define Image/Build/TPLINK |
| 542 | [ -e "$(KDIR)/loader-$(2).gz" ] |
| 543 | $(call MkuImageOKLI,$(2)) |
| 544 | ( \ |
| 545 | dd if=$(KDIR)/loader-$(2).gz bs=7680 count=1 conv=sync; \ |
| 546 | dd if=$(KDIR_TMP)/vmlinux-$(2).okli conv=sync; \ |
| 547 | ) > $(KDIR_TMP)/kernel-$(2).bin |
| 548 | -$(STAGING_DIR_HOST)/bin/mktplinkfw \ |
| 549 | -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION)\ |
| 550 | -k $(KDIR_TMP)/kernel-$(2).bin \ |
| 551 | -r $(KDIR)/root.$(1) \ |
| 552 | -a $(call rootfs_align,$(1)) -j \ |
| 553 | -o $(call factoryname,$(1),$(2)) |
| 554 | -$(STAGING_DIR_HOST)/bin/mktplinkfw \ |
| 555 | -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) -s\ |
| 556 | -k $(KDIR_TMP)/kernel-$(2).bin \ |
| 557 | -r $(KDIR)/root.$(1) \ |
| 558 | -a $(call rootfs_align,$(1)) -j \ |
| 559 | -o $(call sysupname,$(1),$(2)) |
| 560 | endef |
| 561 | |
| 562 | define Image/Build/TPLINK/initramfs |
| 563 | $(call Image/BuildLoader,$(2),gz,$(3),0x80060000) |
| 564 | -$(STAGING_DIR_HOST)/bin/mktplinkfw -c \ |
| 565 | -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) -s\ |
| 566 | -k $(KDIR)/loader-$(2).gz \ |
| 567 | -o $(call imgname,$(1),$(2))-uImage.bin |
| 568 | endef |
| 569 | |
| 570 | define Image/Build/TPLINK-LZMA |
| 571 | $(call PatchKernelLzma,$(2),$(3)) |
| 572 | -$(STAGING_DIR_HOST)/bin/mktplinkfw \ |
| 573 | -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) $(7) \ |
| 574 | -k $(KDIR_TMP)/vmlinux-$(2).bin.lzma \ |
| 575 | -r $(KDIR)/root.$(1) \ |
| 576 | -a $(call rootfs_align,$(1)) -j \ |
| 577 | -o $(call factoryname,$(1),$(2)) |
| 578 | -$(STAGING_DIR_HOST)/bin/mktplinkfw \ |
| 579 | -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) $(7) -s \ |
| 580 | -k $(KDIR_TMP)/vmlinux-$(2).bin.lzma \ |
| 581 | -r $(KDIR)/root.$(1) \ |
| 582 | -a $(call rootfs_align,$(1)) -j \ |
| 583 | -o $(call sysupname,$(1),$(2)) |
| 584 | endef |
| 585 | |
| 586 | define Image/Build/TPLINK-LZMA/initramfs |
| 587 | $(call PatchKernelLzma,$(2),$(3)) |
| 588 | -$(STAGING_DIR_HOST)/bin/mktplinkfw -c \ |
| 589 | -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) $(7) -s \ |
| 590 | -k $(KDIR_TMP)/vmlinux-$(2).bin.lzma \ |
| 591 | -o $(call imgname,$(1),$(2))-uImage.bin |
| 592 | endef |
| 593 | |
| 594 | define Image/Build/CyberTAN |
| 595 | $(call MkuImageGzip,$(2),$(3)) |
| 596 | $(STAGING_DIR_HOST)/bin/trx -o $(KDIR)/image.tmp -f $(KDIR_TMP)/vmlinux-$(2).uImage \ |
| 597 | -x 32 -a 0x10000 -x -32 -f $(KDIR)/root.$(1) |
| 598 | -$(STAGING_DIR_HOST)/bin/addpattern -B $(2) -v v$(4) \ |
| 599 | -i $(KDIR)/image.tmp \ |
| 600 | -o $(call sysupname,$(1),$(2)) |
| 601 | -$(STAGING_DIR_HOST)/bin/addpattern -B $(2) -v v$(4) -g \ |
| 602 | -i $(KDIR)/image.tmp \ |
| 603 | -o $(call factoryname,$(1),$(2)) |
| 604 | rm $(KDIR)/image.tmp |
| 605 | endef |
| 606 | |
| 607 | define Image/Build/Netgear/Build_uImage |
| 608 | $(call MkuImageLzma,$(1),$(2) $(3),-d20) |
| 609 | -rm -rf $(KDIR)/$(1) |
| 610 | mkdir -p $(KDIR)/$(1)/image |
| 611 | $(STAGING_DIR_HOST)/bin/wndr3700 \ |
| 612 | $(KDIR_TMP)/vmlinux-$(1).uImage \ |
| 613 | $(KDIR)/$(1)/image/uImage \ |
| 614 | $(4) |
| 615 | $(STAGING_DIR_HOST)/bin/mksquashfs-lzma \ |
| 616 | $(KDIR)/$(1) $(KDIR_TMP)/vmlinux-$(1).uImage.squashfs.tmp \ |
| 617 | -nopad -noappend -root-owned -be |
| 618 | -rm -rf $(KDIR)/$(1) |
| 619 | mkimage -A mips -O linux -T filesystem -C none \ |
| 620 | -a 0xbf070000 -e 0xbf070000 \ |
| 621 | -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \ |
| 622 | -d $(KDIR_TMP)/vmlinux-$(1).uImage.squashfs.tmp \ |
| 623 | $(KDIR_TMP)/vmlinux-$(1).uImage.squashfs.tmp2 |
| 624 | $(STAGING_DIR_HOST)/bin/wndr3700 \ |
| 625 | $(KDIR_TMP)/vmlinux-$(1).uImage.squashfs.tmp2 \ |
| 626 | $(KDIR_TMP)/vmlinux-$(1).uImage.squashfs \ |
| 627 | $(4) |
| 628 | -rm -f $(KDIR_TMP)/vmlinux-$(1).uImage.squashfs.tmp* |
| 629 | endef |
| 630 | |
| 631 | define Image/Build/Netgear/Estimate_uImage |
| 632 | $(call Image/Build/Netgear/Build_uImage,$(1)_est,$(2),$(3),$(4)) |
| 633 | ( \ |
| 634 | set -e; \ |
| 635 | kk=`echo '$(3)' | sed -e 's/.*[:,]\([0-9]*\)k(kernel).*/\1/'`; \ |
| 636 | rk=`echo '$(3)' | sed -e 's/.*[:,]\([0-9]*\)k(rootfs).*/\1/'`; \ |
| 637 | let 'tk = kk + rk'; \ |
| 638 | s=`stat -c'%s' '$(KDIR_TMP)/vmlinux-$(1)_est.uImage.squashfs'`; \ |
| 639 | c=`echo '$(3)' | wc -c`; \ |
| 640 | let 'kk = (((s + c) / (64 * 1024) + 1) * 64)'; \ |
| 641 | let 'rk = tk - kk'; \ |
| 642 | echo '$(3)' | sed -e "s/[0-9]*k(kernel)/$$$${kk}k(kernel)/" \ |
| 643 | -e "s/[0-9]*k(rootfs)/$$$${rk}k(rootfs)/" > \ |
| 644 | '$(KDIR_TMP)/$(1)_mtdparts'; \ |
| 645 | let 'k = kk * 1024'; \ |
| 646 | echo "$$$${k}" > '$(KDIR_TMP)/$(1)_kernel_maxsize'; \ |
| 647 | let 'r = rk * 1024'; \ |
| 648 | echo "$$$${r}" > '$(KDIR_TMP)/$(1)_rootfs_maxsize'; \ |
| 649 | ) |
| 650 | -rm -f $(KDIR_TMP)/vmlinux-$(1)_est \ |
| 651 | $(KDIR_TMP)/vmlinux-$(1)_est.bin.lzma \ |
| 652 | $(KDIR_TMP)/vmlinux-$(1)_est.uImage \ |
| 653 | $(KDIR_TMP)/vmlinux-$(1)_est.uImage.squashfs |
| 654 | endef |
| 655 | |
| 656 | define Image/Build/Netgear |
| 657 | $(call Image/Build/Netgear/Estimate_uImage,$(2),$(3),$(4),$(5)) |
| 658 | $(call Image/Build/Netgear/Build_uImage,$(2),$(3),`cat $(KDIR_TMP)/$(2)_mtdparts`,$(5)) |
| 659 | if [ `stat -c%s '$(KDIR_TMP)/vmlinux-$(2).uImage.squashfs'` -gt \ |
| 660 | `cat '$(KDIR_TMP)/$(2)_kernel_maxsize'` ]; then \ |
| 661 | echo "$(KDIR_TMP)/vmlinux-$(2).uImage.squashfs is too big" >& 2; \ |
| 662 | else if [ `stat -c%s '$(KDIR)/root.$(1)'` -gt \ |
| 663 | `cat '$(KDIR_TMP)/$(2)_rootfs_maxsize'` ]; then \ |
| 664 | echo "$(KDIR)/root.$(1) is too big" >& 2; \ |
| 665 | else \ |
| 666 | ( \ |
| 667 | set -e; \ |
| 668 | dd if=$(KDIR_TMP)/vmlinux-$(2).uImage.squashfs \ |
| 669 | bs=`cat '$(KDIR_TMP)/$(2)_kernel_maxsize'` conv=sync; \ |
| 670 | dd if=$(KDIR)/root.$(1) bs=64k; \ |
| 671 | ) > $(call sysupname,$(1),$(2)); \ |
| 672 | for r in $(7) ; do \ |
| 673 | [ -n "$$$$r" ] && dashr="-$$$$r" || dashr= ; \ |
| 674 | $(STAGING_DIR_HOST)/bin/mkdniimg \ |
| 675 | -B $(6) -v OpenWrt.$(REVISION) -r "$$$$r" $(8) \ |
| 676 | -i $(call sysupname,$(1),$(2)) \ |
| 677 | -o $(call imgname,$(1),$(2))-factory$$$$dashr.img; \ |
| 678 | done; \ |
| 679 | fi; fi |
| 680 | endef |
| 681 | |
| 682 | define Image/Build/Netgear/initramfs |
| 683 | $(call MkuImageLzma,$(2),$(3) $(4)) |
| 684 | $(STAGING_DIR_HOST)/bin/wndr3700 \ |
| 685 | $(KDIR_TMP)/vmlinux-$(2).uImage \ |
| 686 | $(call imgname,$(1),$(2))-uImage.bin \ |
| 687 | $(5) |
| 688 | endef |
| 689 | |
| 690 | define Image/Build/NetgearNAND/initramfs |
| 691 | $(call Image/Build/Netgear/initramfs,$(1),$(2),$(3),$(4),$(5)) |
| 692 | endef |
| 693 | |
| 694 | ifdef CONFIG_PACKAGE_uboot-ar71xx-nbg460n_550n_550nh |
| 695 | define Image/Build/ZyXEL |
| 696 | $(call MkuImageLzma,$(2),$(3)) |
| 697 | $(call Sysupgrade/KRuImage,$(1),$(2),917504,2752512) |
| 698 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 699 | if [ ! -f $(BIN_DIR)/$(IMG_PREFIX)-$(2)-u-boot.bin ]; then \ |
| 700 | echo "Warning: $(IMG_PREFIX)-$(2)-u-boot.bin not found"; \ |
| 701 | else \ |
| 702 | $(STAGING_DIR_HOST)/bin/mkzynfw \ |
| 703 | -B $(4) \ |
| 704 | -b $(BIN_DIR)/$(IMG_PREFIX)-$(2)-u-boot.bin \ |
| 705 | -r $(call sysupname,$(1),$(2)):0x10000 \ |
| 706 | -o $(call factoryname,$(1),$(2)); \ |
| 707 | fi; fi |
| 708 | endef |
| 709 | endif |
| 710 | |
| 711 | define Image/Build/OpenMesh |
| 712 | $(call MkuImageLzma,$(2)) |
| 713 | -sh $(TOPDIR)/scripts/om-fwupgradecfg-gen.sh \ |
| 714 | "$(4)" \ |
| 715 | "$(BUILD_DIR)/fwupgrade.cfg-$(4)" \ |
| 716 | "$(KDIR_TMP)/vmlinux-$(2).uImage" \ |
| 717 | "$(KDIR)/root.$(1)" |
| 718 | -sh $(TOPDIR)/scripts/combined-ext-image.sh \ |
| 719 | "$(4)" "$(call factoryname,$(1),$(2))" \ |
| 720 | "$(BUILD_DIR)/fwupgrade.cfg-$(4)" "fwupgrade.cfg" \ |
| 721 | "$(KDIR_TMP)/vmlinux-$(2).uImage" "kernel" \ |
| 722 | "$(KDIR)/root.$(1)" "rootfs" |
| 723 | endef |
| 724 | |
| 725 | define Image/Build/Zcomax |
| 726 | $(call MkuImageLzma,$(2),$(3) $(4)) |
| 727 | $(call Sysupgrade/RKuImage,$(1),$(2),1507328,6356992) |
| 728 | if [ -e "$(call sysupname,$(1),$(2))" ]; then \ |
| 729 | $(STAGING_DIR_HOST)/bin/mkzcfw \ |
| 730 | -B $(2) \ |
| 731 | -k $(KDIR_TMP)/vmlinux-$(2).uImage \ |
| 732 | -r $(BIN_DIR)/$(IMG_PREFIX)-root.$(1) \ |
| 733 | -o $(call imgname,$(1),$(2))-factory.img; \ |
| 734 | fi |
| 735 | endef |
| 736 | |
| 737 | define Image/Build/Zcomax/initramfs |
| 738 | $(call MkuImageLzma/initramfs,$(2),$(3) $(4)) |
| 739 | endef |
| 740 | |
| 741 | define Image/Build/Template/initramfs/initramfs |
| 742 | $(call Image/Build/$(1)/initramfs,initramfs,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 743 | endef |
| 744 | |
| 745 | define Image/Build/Template/all/squashfs |
| 746 | $(call Image/Build/$(1),squashfs,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 747 | endef |
| 748 | |
| 749 | define Image/Build/Template/all/jffs2-64k |
| 750 | $(call Image/Build/$(1),jffs2-64k,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 751 | endef |
| 752 | |
| 753 | define Image/Build/Template/all/jffs2-128k |
| 754 | $(call Image/Build/$(1),jffs2-128k,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 755 | endef |
| 756 | |
| 757 | define Image/Build/Template/all/jffs2-256k |
| 758 | $(call Image/Build/$(1),jffs2-256k,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 759 | endef |
| 760 | |
| 761 | define Image/Build/Template/squashfs-only/loader |
| 762 | $(call Image/Build/$(1)/loader,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 763 | endef |
| 764 | |
| 765 | define Image/Build/Template/squashfs-only/squashfs |
| 766 | $(call Image/Build/$(1),squashfs,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 767 | endef |
| 768 | |
| 769 | define Image/Build/Template/64k/loader |
| 770 | $(call Image/Build/$(1)/loader,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 771 | endef |
| 772 | |
| 773 | define Image/Build/Template/64k/squashfs |
| 774 | $(call Image/Build/$(1),squashfs-64k,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 775 | endef |
| 776 | |
| 777 | define Image/Build/Template/64k/jffs2-64k |
| 778 | $(call Image/Build/$(1),jffs2-64k,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 779 | endef |
| 780 | |
| 781 | define Image/Build/Template/64kraw/loader |
| 782 | $(call Image/Build/$(1)/loader,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 783 | endef |
| 784 | |
| 785 | define Image/Build/Template/64kraw/squashfs |
| 786 | $(call Image/Build/$(1),squashfs-raw,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 787 | endef |
| 788 | |
| 789 | define Image/Build/Template/64kraw/jffs2-64k |
| 790 | $(call Image/Build/$(1),jffs2-64k,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 791 | endef |
| 792 | |
| 793 | define Image/Build/Template/128k/squashfs |
| 794 | $(call Image/Build/$(1),squashfs,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 795 | endef |
| 796 | |
| 797 | define Image/Build/Template/128k/jffs2-128k |
| 798 | $(call Image/Build/$(1),jffs2-128k,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 799 | endef |
| 800 | |
| 801 | define Image/Build/Template/256k/squashfs |
| 802 | $(call Image/Build/$(1),squashfs,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 803 | endef |
| 804 | |
| 805 | define Image/Build/Template/256k/jffs2-256k |
| 806 | $(call Image/Build/$(1),jffs2-256k,$(2),$(3),$(4),$(5),$(6),$(7),$(8)) |
| 807 | endef |
| 808 | |
| 809 | $(eval $(call SingleProfile,ALFA,$(fs_64k),ALFANX,alfa-nx,ALFA-NX,ttyS0,115200,$$(alfa_mtdlayout_8M),1638400,6291456,vmlinux.gz.uImage,pb9x-2.6.31-jffs2)) |
| 810 | $(eval $(call SingleProfile,ALFA,$(fs_64k),HORNETUB,hornet-ub,HORNET-UB,ttyATH0,115200,$$(alfa_mtdlayout_8M),1638400,6291456,kernel_image,rootfs_image)) |
| 811 | |
| 812 | $(eval $(call SingleProfile,AthGzip,$(fs_64k),AP81,ap81,AP81,ttyS0,115200,,1310720,6619136,KRuImage)) |
| 813 | $(eval $(call SingleProfile,AthGzip,$(fs_64k),AP83,ap83,AP83,ttyS0,115200,,1310720,6619136,KRuImage)) |
| 814 | $(eval $(call SingleProfile,AthGzip,$(fs_64k),AP96,ap96,AP96,ttyS0,115200,$$(ap96_mtdlayout),1769472,6291456,RKuImage)) |
| 815 | |
| 816 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),ALFAAP96,alfa-ap96,ALFA-AP96,ttyS0,115200,$$(alfa_ap96_mtdlayout),2097152,13631488,RKuImage)) |
| 817 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),ALL0258N,all0258n,ALL0258N,ttyS0,115200,$$(all0258n_mtdlayout),1048576,5373952,KRuImage)) |
| 818 | $(eval $(call SingleProfile,AthLzma,$(fs_256k),ALL0315N,all0315n,ALL0315N,ttyS0,115200,$$(all0315n_mtdlayout),1048576,12845056,KRuImage)) |
| 819 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),AP113,ap113,AP113,ttyS0,115200,$$(ap113_mtd_layout),917504,3080192,RK)) |
| 820 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),AP121_2M,ap121-2M,AP121,ttyATH0,115200,$$(ap121_mtdlayout_2M),720896,1245184,RKuImage)) |
| 821 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),AP121_4M,ap121-4M,AP121,ttyATH0,115200,$$(ap121_mtdlayout_4M),917504,2818048,RKuImage)) |
| 822 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),AP121MINI,ap121-mini,AP121-MINI,ttyATH0,115200,$$(ap121_mtdlayout_4M),917504,2818048,RKuImage)) |
| 823 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),AP136_010,ap136-010,AP136-010,ttyS0,115200,$$(ap136_mtdlayout),1441792,6488064,RKuImage)) |
| 824 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),AP136_020,ap136-020,AP136-020,ttyS0,115200,$$(ap136_mtdlayout),1441792,6488064,RKuImage)) |
| 825 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),CAP4200AG,cap4200ag,CAP4200AG,ttyS0,115200,$$(cap4200ag_mtdlayout),1572864,12386304,KRuImage)) |
| 826 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),DB120,db120,DB120,ttyS0,115200,$$(db120_mtdlayout),1441792,6488064,RKuImage)) |
| 827 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),EWDORINAP,ew-dorin,EW-DORIN,ttyATH0,115200,$$(ew-dorin_mtdlayout_4M),1048576,2752512,KRuImage)) |
| 828 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),EWDORINRT,ew-dorin-router,EW-DORIN-ROUTER,ttyATH0,115200,$$(ew-dorin_mtdlayout_4M),1048576,2752512,KRuImage)) |
| 829 | $(eval $(call SingleProfile,AthLzma,$(fs_64k),PB92,pb92,PB92,ttyS0,115200,$$(pb92_mtdlayout),917504,2818048,KRuImage)) |
| 830 | |
| 831 | $(eval $(call SingleProfile,Cameo7240,$(fs_64k),DIR600A1,dir-600-a1,DIR-600-A1,ttyS0,115200,"AP91-AR7240-RT-090223-00")) |
| 832 | $(eval $(call SingleProfile,Cameo7240,$(fs_64k),DIR601A1,dir-601-a1,DIR-600-A1,ttyS0,115200,"AP91-AR7240-RT-090223-02")) |
| 833 | $(eval $(call SingleProfile,Cameo7240,$(fs_64k),DIR615E4,dir-615-e4,DIR-615-E4,ttyS0,115200,"AP99-AR7240-RT-091105-05")) |
| 834 | $(eval $(call SingleProfile,Cameo7240,$(fs_64k),FR54RTR,fr-54rtr,DIR-600-A1,ttyS0,115200,"AP91-AR7240-RT-090223-01")) |
| 835 | |
| 836 | $(eval $(call SingleProfile,Cameo913x,$(fs_squash),A02RBW300N,a02-rb-w300n,TEW-632BRP,ttyS0,115200,"AP81-AR9130-RT-070614-03")) |
| 837 | $(eval $(call SingleProfile,Cameo913x,$(fs_squash),DIR615C1,dir-615-c1,DIR-615-C1,ttyS0,115200,"AP81-AR9130-RT-070614-02")) |
| 838 | $(eval $(call SingleProfile,Cameo913x,$(fs_squash),TEW632BRP,tew-632brp,TEW-632BRP,ttyS0,115200,"AP81-AR9130-RT-070614-00")) |
| 839 | $(eval $(call SingleProfile,Cameo913x,$(fs_squash),TEW652BRP_FW,tew-652brp,TEW-632BRP,ttyS0,115200,"AP81-AR9130-RT-080609-05")) |
| 840 | $(eval $(call SingleProfile,Cameo913x,$(fs_squash),TEW652BRP_RECOVERY,tew-652brp-recovery,TEW-632BRP,ttyS0,115200,"AP81-AR9130-RT-070614-02")) |
| 841 | |
| 842 | $(eval $(call SingleProfile,Cameo933x,$(fs_squash),TEW712BR,tew-712br,TEW-712BR,ttyATH0,115200,"HORNET-RT-TEW712BR-3")) |
| 843 | |
| 844 | $(eval $(call SingleProfile,CyberTAN,$(fs_64k),WRT160NL,wrt160nl,WRT160NL,ttyS0,115200,1.00.01)) |
| 845 | |
| 846 | $(eval $(call SingleProfile,DIR825B1,$(fs_64k),DIR825B1,dir-825-b1,DIR-825-B1,ttyS0,115200,01AP94-AR7161-RT-080619-00,00AP94-AR7161-RT-080619-00)) |
| 847 | $(eval $(call SingleProfile,DIR825B1,$(fs_64k),TEW673GRU,tew-673gru,TEW-673GRU,ttyS0,115200,01AP94-AR7161-RT-080619-01,00AP94-AR7161-RT-080619-01)) |
| 848 | |
| 849 | $(eval $(call SingleProfile,DLRTDEV,$(fs_64k),DLRTDEV01,dlrtdev01,DIR-825-B1,ttyS0,115200,01AP94-AR7161-RT-080619-00,00AP94-AR7161-RT-080619-00)) |
| 850 | |
| 851 | $(eval $(call SingleProfile,MyLoader,$(fs_64k),WP543_2M,wp543,,ttyS0,115200,0x200000,2M)) |
| 852 | $(eval $(call SingleProfile,MyLoader,$(fs_64k),WP543_4M,wp543,,ttyS0,115200,0x400000,4M)) |
| 853 | $(eval $(call SingleProfile,MyLoader,$(fs_64k),WP543_8M,wp543,,ttyS0,115200,0x800000,8M)) |
| 854 | $(eval $(call SingleProfile,MyLoader,$(fs_64k),WP543_16M,wp543,,ttyS0,115200,0x1000000,16M)) |
| 855 | $(eval $(call SingleProfile,MyLoader,$(fs_64k),WPE72_4M,wpe72,,ttyS0,115200,0x400000,4M)) |
| 856 | $(eval $(call SingleProfile,MyLoader,$(fs_64k),WPE72_8M,wpe72,,ttyS0,115200,0x800000,8M)) |
| 857 | $(eval $(call SingleProfile,MyLoader,$(fs_64k),WPE72_16M,wpe72,,ttyS0,115200,0x1000000,16M)) |
| 858 | |
| 859 | $(eval $(call SingleProfile,Netgear,$(fs_64k),WNDR3700V1,wndr3700,WNDR3700,ttyS0,115200,$$(wndr3700_mtdlayout),3700,WNDR3700,"" NA,)) |
| 860 | $(eval $(call SingleProfile,Netgear,$(fs_64k),WNDR3700V2,wndr3700v2,WNDR3700,ttyS0,115200,$$(wndr3700v2_mtdlayout),3701,WNDR3700v2,"",-H 29763654+16+64)) |
| 861 | $(eval $(call SingleProfile,Netgear,$(fs_64k),WNDR3800,wndr3800,WNDR3700,ttyS0,115200,$$(wndr3700v2_mtdlayout),3701,WNDR3800,"",-H 29763654+16+128)) |
| 862 | $(eval $(call SingleProfile,Netgear,$(fs_64k),WNDRMAC,wndrmac,WNDR3700,ttyS0,115200,$$(wndr3700v2_mtdlayout),3701,WNDRMAC,"",-H 29763654+16+64)) |
| 863 | $(eval $(call SingleProfile,Netgear,$(fs_64k),WNDRMACV2,wndrmacv2,WNDR3700,ttyS0,115200,$$(wndr3700v2_mtdlayout),3701,WNDRMACv2,"",-H 29763654+16+128)) |
| 864 | |
| 865 | $(eval $(call SingleProfile,NetgearNAND,$(fs_64k),WNDR4300,wndr4300,WNDR4300,ttyS0,115200,$$(wndr4300_mtdlayout),3703,WNDR4300,"",-H 29763948+0+128+128+2x2+3x3)) |
| 866 | |
| 867 | $(eval $(call SingleProfile,OpenMesh,$(fs_squash),OM2P,om2p,,,,OM2P)) |
| 868 | $(eval $(call SingleProfile,OpenMesh,$(fs_squash),MR600,mr600,,,,MR600)) |
| 869 | |
| 870 | $(eval $(call SingleProfile,PB4X,$(fs_128k),ALL0305,all0305,ALL0305,ttyS0,115200)) |
| 871 | $(eval $(call SingleProfile,PB4X,$(fs_128k),EAP7660D,eap7660d,EAP7660D,ttyS0,115200)) |
| 872 | $(eval $(call SingleProfile,PB4X,$(fs_64k),JA76PF,ja76pf,JA76PF,ttyS0,115200)) |
| 873 | $(eval $(call SingleProfile,PB4X,$(fs_64k),JA76PF2,ja76pf2,JA76PF2,ttyS0,115200)) |
| 874 | $(eval $(call SingleProfile,PB4X,$(fs_64k),JWAP003,jwap003,JWAP003,ttyS0,115200)) |
| 875 | $(eval $(call SingleProfile,PB4X,$(fs_64k),PB42,pb42,PB42,ttyS0,115200)) |
| 876 | $(eval $(call SingleProfile,PB4X,$(fs_64k),PB44,pb44,PB44,ttyS0,115200)) |
| 877 | |
| 878 | $(eval $(call SingleProfile,Planex,$(fs_64k),MZKW04NU,mzk-w04nu,MZK-W04NU,ttyS0,115200)) |
| 879 | $(eval $(call SingleProfile,Planex,$(fs_64k),MZKW300NH,mzk-w300nh,MZK-W300NH,ttyS0,115200)) |
| 880 | |
| 881 | $(eval $(call SingleProfile,TPLINKOLD,$(fs_squash),TLWR841NV15,tl-wr841nd-v1.5,TL-WR841N-v1.5,ttyS0,115200,0x08410002,2,4M)) |
| 882 | |
| 883 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLMR3220V1,tl-mr3220-v1,TL-MR3220,ttyS0,115200,0x32200001,1,4M)) |
| 884 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLMR3420,tl-mr3420-v1,TL-MR3420,ttyS0,115200,0x34200001,1,4M)) |
| 885 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWA701,tl-wa701n-v1,TL-WA901ND,ttyS0,115200,0x07010001,1,4M)) |
| 886 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWA7510NV1,tl-wa7510n,TL-WA7510N,ttyS0,115200,0x75100001,1,4M)) |
| 887 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWA801NV1,tl-wa801nd-v1,TL-WA901ND,ttyS0,115200,0x08010001,1,4M)) |
| 888 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWA901NV1,tl-wa901nd-v1,TL-WA901ND,ttyS0,115200,0x09010001,1,4M)) |
| 889 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWA901NV2,tl-wa901nd-v2,TL-WA901ND-v2,ttyS0,115200,0x09010002,1,4M)) |
| 890 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR740NV1,tl-wr740n-v1,TL-WR741ND,ttyS0,115200,0x07400001,1,4M)) |
| 891 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR740NV3,tl-wr740n-v3,TL-WR741ND,ttyS0,115200,0x07400003,1,4M)) |
| 892 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR741NV1,tl-wr741nd-v1,TL-WR741ND,ttyS0,115200,0x07410001,1,4M)) |
| 893 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR741NV2,tl-wr741nd-v2,TL-WR741ND,ttyS0,115200,0x07410001,1,4M)) |
| 894 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR743,tl-wr743nd-v1,TL-WR741ND,ttyS0,115200,0x07430001,1,4M)) |
| 895 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR841NV3,tl-wr841nd-v3,TL-WR941ND,ttyS0,115200,0x08410003,3,4M)) |
| 896 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR841NV5,tl-wr841nd-v5,TL-WR741ND,ttyS0,115200,0x08410005,1,4M)) |
| 897 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR841NV7,tl-wr841nd-v7,TL-WR841N-v7,ttyS0,115200,0x08410007,1,4M)) |
| 898 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR842,tl-wr842n-v1,TL-MR3420,ttyS0,115200,0x08420001,1,8M)) |
| 899 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR941NV2,tl-wr941nd-v2,TL-WR941ND,ttyS0,115200,0x09410002,2,4M)) |
| 900 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR941NV3,tl-wr941nd-v3,TL-WR941ND,ttyS0,115200,0x09410002,2,4M)) |
| 901 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR941NV4,tl-wr941nd-v4,TL-WR741ND,ttyS0,115200,0x09410004,1,4M)) |
| 902 | $(eval $(call SingleProfile,TPLINK,$(fs_64kraw),TLWR1043,tl-wr1043nd-v1,TL-WR1043ND,ttyS0,115200,0x10430001,1,8M)) |
| 903 | |
| 904 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLMR11U,tl-mr11u-v1,TL-MR11U,ttyATH0,115200,0x00110101,1,4Mlzma)) |
| 905 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLMR3020,tl-mr3020-v1,TL-MR3020,ttyATH0,115200,0x30200001,1,4Mlzma)) |
| 906 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLMR3040,tl-mr3040-v1,TL-MR3040,ttyATH0,115200,0x30400001,1,4Mlzma)) |
| 907 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLMR3220V2,tl-mr3220-v2,TL-MR3220-v2,ttyATH0,115200,0x32200002,1,4Mlzma)) |
| 908 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLWR703,tl-wr703n-v1,TL-WR703N,ttyATH0,115200,0x07030101,1,4Mlzma)) |
| 909 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLWR740NV4,tl-wr740n-v4,TL-WR741ND-v4,ttyATH0,115200,0x07400004,1,4Mlzma)) |
| 910 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLWR741NV4,tl-wr741nd-v4,TL-WR741ND-v4,ttyATH0,115200,0x07410004,1,4Mlzma)) |
| 911 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLWR841NV8,tl-wr841n-v8,TL-WR841N-v8,ttyS0,115200,0x08410008,1,4Mlzma)) |
| 912 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLWR1041,tl-wr1041n-v2,TL-WR1041N-v2,ttyS0,115200,0x10410002,1,4Mlzma)) |
| 913 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLWR2543,tl-wr2543-v1,TL-WR2543N,ttyS0,115200,0x25430001,1,8Mlzma,-v 3.13.99)) |
| 914 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLWDR3600V1,tl-wdr3600-v1,TL-WDR4300,ttyS0,115200,0x36000001,1,8Mlzma)) |
| 915 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLWDR4300V1,tl-wdr4300-v1,TL-WDR4300,ttyS0,115200,0x43000001,1,8Mlzma)) |
| 916 | $(eval $(call SingleProfile,TPLINK-LZMA,$(fs_64kraw),TLWDR4310V1,tl-wdr4310-v1,TL-WDR4300,ttyS0,115200,0x43100001,1,8Mlzma)) |
| 917 | |
| 918 | $(eval $(call SingleProfile,UAPPRO,$(fs_64k),UAPPRO,ubnt-uap-pro,UAP-PRO,ttyS0,115200,BZ,BZ,ar934x)) |
| 919 | |
| 920 | $(eval $(call SingleProfile,UBDEV,$(fs_64k),UBDEV01,ubdev01,UBNT-UF,ttyS0,115200,XM,XM,ar7240)) |
| 921 | |
| 922 | $(eval $(call SingleProfile,UBNT,$(fs_64k),UBNTRS,ubnt-rs,UBNT-RS,ttyS0,115200,RS,RSx,ar7100)) |
| 923 | $(eval $(call SingleProfile,UBNT,$(fs_64k),UBNTRSPRO,ubnt-rspro,UBNT-RSPRO,ttyS0,115200,RSPRO,RSPRO,ar7100pro)) |
| 924 | $(eval $(call SingleProfile,UBNT,$(fs_64k),UBNTLSSR71,ubnt-ls-sr71,UBNT-LS-SR71,ttyS0,115200,LS-SR71,LS-SR71,ar7100)) |
| 925 | |
| 926 | $(eval $(call SingleProfile,UBNTXM,$(fs_64k),RW2458N,rw2458n,RW2458N,ttyS0,115200,XM,XM,ar7240)) |
| 927 | $(eval $(call SingleProfile,UBNTXM,$(fs_64k),UBNTAIRROUTER,ubnt-airrouter,UBNT-AR,ttyS0,115200,XM,XM,ar7240)) |
| 928 | $(eval $(call SingleProfile,UBNTXM,$(fs_64k),UBNTBULLETM,ubnt-bullet-m,UBNT-BM,ttyS0,115200,XM,XM,ar7240)) |
| 929 | $(eval $(call SingleProfile,UBNTXM,$(fs_64k),UBNTROCKETM,ubnt-rocket-m,UBNT-RM,ttyS0,115200,XM,XM,ar7240)) |
| 930 | $(eval $(call SingleProfile,UBNTXM,$(fs_64k),UBNTNANOM,ubnt-nano-m,UBNT-NM,ttyS0,115200,XM,XM,ar7240)) |
| 931 | $(eval $(call SingleProfile,UBNTXM,$(fs_64k),UBNTUNIFI,ubnt-unifi,UBNT-UF,ttyS0,115200,XM,XM,ar7240)) |
| 932 | $(eval $(call SingleProfile,UBNTXM,$(fs_64k),UBNTUNIFIOUTDOOR,ubnt-unifi-outdoor,UBNT-U20,ttyS0,115200,XM,XM,ar7240)) |
| 933 | |
| 934 | $(eval $(call SingleProfile,WHRHPG300N,$(fs_64k),WHRG301N,whr-g301n,WHR-G301N,ttyS0,115200,$$(whrhpg300n_mtdlayout),WHR-G301N)) |
| 935 | $(eval $(call SingleProfile,WHRHPG300N,$(fs_64k),WHRHPG300N,whr-hp-g300n,WHR-HP-G300N,ttyS0,115200,$$(whrhpg300n_mtdlayout),WHR-HP-G300N)) |
| 936 | $(eval $(call SingleProfile,WHRHPG300N,$(fs_64k),WHRHPGN,whr-hp-gn,WHR-HP-GN,ttyS0,115200,$$(whrhpg300n_mtdlayout),WHR-HP-GN)) |
| 937 | $(eval $(call SingleProfile,WHRHPG300N,$(fs_64k),WLAEAG300N,wlae-ag300n,WLAE-AG300N,ttyS0,115200,$$(whrhpg300n_mtdlayout),WLAE-AG300N)) |
| 938 | |
| 939 | $(eval $(call SingleProfile,WRT400N,$(fs_64k),WRT400N,wrt400n,WRT400N,ttyS0,115200)) |
| 940 | |
| 941 | $(eval $(call SingleProfile,WZRHPG30XNH,$(fs_128k),WZRHPG300NH,wzr-hp-g300nh,WZR-HP-G300NH,ttyS0,115200,WZR-HP-G300NH)) |
| 942 | $(eval $(call SingleProfile,WZRHPG30XNH,$(fs_64k),WZRHPG300NH2,wzr-hp-g300nh2,WZR-HP-G300NH2,ttyS0,115200,WZR-HP-G300NH2)) |
| 943 | $(eval $(call SingleProfile,WZRHPG30XNH,$(fs_64k),WZRHPAG300H,wzr-hp-ag300h,WZR-HP-AG300H,ttyS0,115200,WZR-HP-AG300H)) |
| 944 | $(eval $(call SingleProfile,WZRHPG30XNH,$(fs_64k),WZRHPG450H,wzr-hp-g450h,WZR-HP-G450H,ttyS0,115200,WZR-HP-AG450H)) |
| 945 | |
| 946 | $(eval $(call SingleProfile,Zcomax,$(fs_64k),ZCN1523H28,zcn-1523h-2-8,ZCN-1523H-2,ttyS0,115200,$$(zcn1523h_mtdlayout))) |
| 947 | $(eval $(call SingleProfile,Zcomax,$(fs_64k),ZCN1523H516,zcn-1523h-5-16,ZCN-1523H-5,ttyS0,115200,$$(zcn1523h_mtdlayout))) |
| 948 | |
| 949 | $(eval $(call SingleProfile,ZyXEL,$(fs_64k),NBG_460N_550N_550NH,nbg460n_550n_550nh,NBG460N,ttyS0,115200,NBG-460N)) |
| 950 | |
| 951 | $(eval $(call MultiProfile,AP121,AP121_2M AP121_4M)) |
| 952 | $(eval $(call MultiProfile,AP136,AP136_010 AP136_020)) |
| 953 | $(eval $(call MultiProfile,EWDORIN, EWDORINAP EWDORINRT)) |
| 954 | $(eval $(call MultiProfile,OPENMESH,OM2P MR600)) |
| 955 | $(eval $(call MultiProfile,TEW652BRP,TEW652BRP_FW TEW652BRP_RECOVERY)) |
| 956 | $(eval $(call MultiProfile,TLMR3220,TLMR3220V1 TLMR3220V2)) |
| 957 | $(eval $(call MultiProfile,TLWA801,TLWA801NV1)) |
| 958 | $(eval $(call MultiProfile,TLWA901,TLWA901NV1 TLWA901NV2)) |
| 959 | $(eval $(call MultiProfile,TLWA7510,TLWA7510NV1)) |
| 960 | $(eval $(call MultiProfile,TLWR740,TLWR740NV1 TLWR740NV3 TLWR740NV4)) |
| 961 | $(eval $(call MultiProfile,TLWR741,TLWR741NV1 TLWR741NV2 TLWR741NV4)) |
| 962 | $(eval $(call MultiProfile,TLWR841,TLWR841NV15 TLWR841NV3 TLWR841NV5 TLWR841NV7 TLWR841NV8)) |
| 963 | $(eval $(call MultiProfile,TLWR941,TLWR941NV2 TLWR941NV3 TLWR941NV4)) |
| 964 | $(eval $(call MultiProfile,TLWDR4300,TLWDR3600V1 TLWDR4300V1 TLWDR4310V1)) |
| 965 | $(eval $(call MultiProfile,UBNT,UBNTAIRROUTER UBNTRS UBNTRSPRO UBNTLSSR71 UBNTBULLETM UBNTROCKETM UBNTNANOM UBNTUNIFI UBNTUNIFIOUTDOOR UAPPRO)) |
| 966 | $(eval $(call MultiProfile,WNDR3700,WNDR3700V1 WNDR3700V2 WNDR3800 WNDRMAC WNDRMACV2)) |
| 967 | $(eval $(call MultiProfile,WP543,WP543_2M WP543_4M WP543_8M WP543_16M)) |
| 968 | $(eval $(call MultiProfile,WPE72,WPE72_4M WPE72_8M WPE72_16M)) |
| 969 | |
| 970 | $(eval $(call MultiProfile,Default,$(SINGLE_PROFILES))) |
| 971 | $(eval $(call MultiProfile,Minimal,$(SINGLE_PROFILES))) |
| 972 | $(eval $(call MultiProfile,Madwifi,EAP7660D UBNTRS UBNTRSPRO UBNTLSSR71 WP543)) |
| 973 | |
| 974 | define Image/Build/squashfs |
| 975 | cp $(KDIR)/root.squashfs $(KDIR)/root.squashfs-raw |
| 976 | cp $(KDIR)/root.squashfs $(KDIR)/root.squashfs-64k |
| 977 | $(STAGING_DIR_HOST)/bin/padjffs2 $(KDIR)/root.squashfs-64k 64 |
| 978 | cp $(KDIR)/root.squashfs-64k $(BIN_DIR)/$(IMG_PREFIX)-root.squashfs-64k |
| 979 | $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) |
| 980 | endef |
| 981 | |
| 982 | define Image/Build/Initramfs |
| 983 | $(call Image/Build/Profile/$(PROFILE),initramfs) |
| 984 | endef |
| 985 | |
| 986 | define Image/Prepare |
| 987 | gzip -9 -c $(KDIR)/vmlinux > $(KDIR)/vmlinux.bin.gz |
| 988 | $(call CompressLzma,$(KDIR)/vmlinux,$(KDIR)/vmlinux.bin.lzma) |
| 989 | $(call Image/BuildLoader,generic,elf) |
| 990 | $(call Image/Build/Profile/$(if $(CONFIG_IB),Default,$(PROFILE)),loader) |
| 991 | endef |
| 992 | |
| 993 | define Image/Build |
| 994 | $(call Image/Build/$(1)) |
| 995 | dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync |
| 996 | $(call Image/Build/Profile/$(PROFILE),$(1)) |
| 997 | endef |
| 998 | |
| 999 | $(eval $(call BuildImage)) |
| 1000 | |