diff options
author | Mathias Kresin <dev@kresin.me> | 2017-01-28 12:36:15 +0100 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2017-01-28 12:44:35 +0100 |
commit | 66211d07817297f79836f29c12de26b592236f14 (patch) | |
tree | 1ab7a0be0471131deccc560731936c1e433e2db9 | |
parent | 36db14369016b976ce7b0d6a1928eb7a26c45f5c (diff) | |
download | mtk-20170518-66211d07817297f79836f29c12de26b592236f14.zip mtk-20170518-66211d07817297f79836f29c12de26b592236f14.tar.gz mtk-20170518-66211d07817297f79836f29c12de26b592236f14.tar.bz2 |
lantiq: fix brnImage signature for the VGV7510KW22BRN images
The VGV7510KW22BRN and VGV7519BRN do not have the same brnImage
signature. It was accidentally changed with ba42c1d ("lantiq: un-macro
the image building code").
Signed-off-by: Mathias Kresin <dev@kresin.me>
-rw-r--r-- | target/linux/lantiq/image/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/lantiq/image/Makefile b/target/linux/lantiq/image/Makefile index 0b976ac..cdc88b2 100644 --- a/target/linux/lantiq/image/Makefile +++ b/target/linux/lantiq/image/Makefile @@ -538,9 +538,9 @@ TARGET_DEVICES += VGV7510KW22NOR define Device/VGV7510KW22BRN $(Device/lantiqBrnImage) IMAGE_SIZE := 7168k - SIGNATURE := 5D00008000 + SIGNATURE := BRNDA6431 MAGIC := 0x12345678 - CRC32_POLY := 0x2083b8ed + CRC32_POLY := 0x04c11db7 DEVICE_TITLE := o2 Box 6431 / Arcadyan VGV7510KW22 (BRN) DEVICE_PACKAGES := kmod-rt2800-pci wpad-mini kmod-usb-dwc2 kmod-ltq-tapi kmod-ltq-vmmc endef |