1b5ae14162
The factory image has an uImage header covering the entire image and not only the kernel. The original uImage header which covers only the kernel is appended to the end of the image. During LEDE boot the uImage rootfs splitter skips the whole filesystem, can't find a valid filesystem magic and panics. The last known working version was OpenWrt 14.07, which simply kept on searching for an uImage header if the first found didn't resulted into a working rootfs. This behaviour is kind of error prone since it could produce false positives. Since the sysupgrade image works fine in combination with the tftp recovery for doing the initial installation of LEDE, simply drop the factory image. Related: FS#462 Signed-off-by: Mathias Kresin <dev@kresin.me>
117 lines
3.2 KiB
Makefile
117 lines
3.2 KiB
Makefile
#
|
|
# RT3662/RT3883 Profiles
|
|
#
|
|
define Build/mkrtn56uimg
|
|
$(STAGING_DIR_HOST)/bin/mkrtn56uimg $(1) $@
|
|
endef
|
|
|
|
define Device/br-6475nd
|
|
DTS := BR-6475ND
|
|
BLOCKSIZE := 64k
|
|
IMAGE_SIZE := 7744k
|
|
IMAGE/sysupgrade.bin := append-kernel | append-rootfs | \
|
|
edimax-header -s CSYS -m RN54 -f 0x70000 -S 0x01100000 | pad-rootfs | \
|
|
append-metadata | check-size $$$$(IMAGE_SIZE)
|
|
DEVICE_TITLE := Edimax BR-6475nD
|
|
DEVICE_PACKAGES := swconfig
|
|
endef
|
|
TARGET_DEVICES += br-6475nd
|
|
|
|
define Device/cy-swr1100
|
|
DTS := CY-SWR1100
|
|
BLOCKSIZE := 64k
|
|
KERNEL := $(KERNEL_DTB)
|
|
IMAGES += factory.bin
|
|
IMAGE/sysupgrade.bin := \
|
|
append-kernel | pad-offset $$$$(BLOCKSIZE) 64 | append-rootfs | \
|
|
seama -m "dev=/dev/mtdblock/2" -m "type=firmware" | \
|
|
pad-rootfs | append-metadata | check-size $$$$(IMAGE_SIZE)
|
|
IMAGE/factory.bin := \
|
|
append-kernel | pad-offset $$$$(BLOCKSIZE) 64 | \
|
|
append-rootfs | pad-rootfs -x 64 | \
|
|
seama -m "dev=/dev/mtdblock/2" -m "type=firmware" | \
|
|
seama-seal -m "signature=wrgnd10_samsung_ss815" | \
|
|
check-size $$$$(IMAGE_SIZE)
|
|
DEVICE_TITLE := Samsung CY-SWR1100
|
|
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 swconfig
|
|
endef
|
|
TARGET_DEVICES += cy-swr1100
|
|
|
|
|
|
define Device/dir-645
|
|
DTS := DIR-645
|
|
BLOCKSIZE := 4k
|
|
KERNEL := $(KERNEL_DTB)
|
|
IMAGES += factory.bin
|
|
IMAGE/sysupgrade.bin := \
|
|
append-kernel | pad-offset $$$$(BLOCKSIZE) 64 | append-rootfs | \
|
|
seama -m "dev=/dev/mtdblock/2" -m "type=firmware" | \
|
|
pad-rootfs | append-metadata | check-size $$$$(IMAGE_SIZE)
|
|
IMAGE/factory.bin := \
|
|
append-kernel | pad-offset $$$$(BLOCKSIZE) 64 | \
|
|
append-rootfs | pad-rootfs -x 64 | \
|
|
seama -m "dev=/dev/mtdblock/2" -m "type=firmware" | \
|
|
seama-seal -m "signature=wrgn39_dlob.hans_dir645" | \
|
|
check-size $$$$(IMAGE_SIZE)
|
|
DEVICE_TITLE := D-Link DIR-645
|
|
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 swconfig
|
|
endef
|
|
TARGET_DEVICES += dir-645
|
|
|
|
|
|
define Device/hpm
|
|
DTS := HPM
|
|
BLOCKSIZE := 64k
|
|
IMAGE_SIZE := 16064k
|
|
DEVICE_TITLE := Omnima HPM
|
|
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2
|
|
endef
|
|
TARGET_DEVICES += hpm
|
|
|
|
|
|
define Device/rt-n56u
|
|
DTS := RT-N56U
|
|
BLOCKSIZE := 64k
|
|
IMAGES += factory.bin
|
|
IMAGE/sysupgrade.bin += | mkrtn56uimg -s
|
|
DEVICE_TITLE := Asus RT-N56U
|
|
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 swconfig
|
|
endef
|
|
TARGET_DEVICES += rt-n56u
|
|
|
|
|
|
define Device/tew-691gr
|
|
DTS := TEW-691GR
|
|
BLOCKSIZE := 64k
|
|
IMAGES += factory.bin
|
|
IMAGE/factory.bin := $$(sysupgrade_bin) | check-size $$$$(IMAGE_SIZE) | \
|
|
umedia-header 0x026910
|
|
DEVICE_TITLE := TRENDnet TEW-691GR
|
|
DEVICE_PACKAGES := swconfig
|
|
endef
|
|
TARGET_DEVICES += tew-691gr
|
|
|
|
|
|
define Device/tew-692gr
|
|
DTS := TEW-692GR
|
|
BLOCKSIZE := 64k
|
|
IMAGES += factory.bin
|
|
IMAGE/factory.bin := $$(sysupgrade_bin) | check-size $$$$(IMAGE_SIZE) | \
|
|
umedia-header 0x026920
|
|
DEVICE_TITLE := TRENDnet TEW-692GR
|
|
DEVICE_PACKAGES := swconfig
|
|
endef
|
|
TARGET_DEVICES += tew-692gr
|
|
|
|
|
|
define Device/wlr-6000
|
|
DTS := WLR-6000
|
|
BLOCKSIZE := 4k
|
|
IMAGE_SIZE := 7244k
|
|
IMAGES += factory.dlf
|
|
IMAGE/factory.dlf := $$(sysupgrade_bin) | check-size $$$$(IMAGE_SIZE) | \
|
|
senao-header -r 0x0202 -p 0x41 -t 2
|
|
DEVICE_TITLE := Sitecom WLR-6000
|
|
DEVICE_PACKAGES := kmod-usb-core kmod-usb-ohci kmod-usb2 swconfig
|
|
endef
|
|
TARGET_DEVICES += wlr-6000
|