diff options
| author | David Bauer | 2021-03-17 23:54:25 +0000 |
|---|---|---|
| committer | David Bauer | 2021-03-17 23:54:25 +0000 |
| commit | ac5675ec8f63d8cce5af066fa1fcf3906b9e8b2c (patch) | |
| tree | 29f20b81523276c86a8ade6020bd2564b47d59f9 | |
| parent | 0e3f6fbe1095387737bba6c71851f5c339f916da (diff) | |
| download | openwrt-ac5675ec8f63d8cce5af066fa1fcf3906b9e8b2c.tar.gz | |
ramips: fix broken UniFi 6 Lite image
Ubiquiti's own bootloader expects the configuration mode to be present
with a "@" instead of a "-" for the sperator character. Otherwise
booting of the image fails.
Signed-off-by: David Bauer <mail@david-bauer.net>
| -rw-r--r-- | target/linux/ramips/image/mt7621.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/ramips/image/mt7621.mk b/target/linux/ramips/image/mt7621.mk index 396b112b76..21d192fc0b 100644 --- a/target/linux/ramips/image/mt7621.mk +++ b/target/linux/ramips/image/mt7621.mk @@ -1193,6 +1193,7 @@ define Device/ubnt_unifi-6-lite $(Device/dsa-migration) DEVICE_VENDOR := Ubiquiti DEVICE_MODEL := UniFi 6 Lite + DEVICE_DTS_CONFIG := config@1 DEVICE_PACKAGES += kmod-mt7603 kmod-mt7915e KERNEL := kernel-bin | lzma | fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb IMAGE_SIZE := 15424k |