diff options
author | Piotr Dymacz <pepe2k@gmail.com> | 2018-02-15 18:42:45 +0100 |
---|---|---|
committer | Piotr Dymacz <pepe2k@gmail.com> | 2018-02-22 18:53:22 +0100 |
commit | 907d67491068890e27f7611da5c5c4d44a672c3c (patch) | |
tree | a9100f85ece7060f88efc74d23295450bebd322b /target/linux/ar71xx/image | |
parent | 12c7b22e4edcb76fffc2c9c1318a041bf43c0d36 (diff) | |
download | upstream-907d67491068890e27f7611da5c5c4d44a672c3c.tar.gz upstream-907d67491068890e27f7611da5c5c4d44a672c3c.tar.bz2 upstream-907d67491068890e27f7611da5c5c4d44a672c3c.zip |
ar71xx: rework GainStrong devices support
- combine support for Oolite/MiniBox V1.0 in single mach-*.c file
- fix model/board names
- include correct/full vendor name
- drop redundant package and factory image
Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
Diffstat (limited to 'target/linux/ar71xx/image')
-rw-r--r-- | target/linux/ar71xx/image/generic.mk | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/target/linux/ar71xx/image/generic.mk b/target/linux/ar71xx/image/generic.mk index 539fd3c1fe..e1cd21d9cf 100644 --- a/target/linux/ar71xx/image/generic.mk +++ b/target/linux/ar71xx/image/generic.mk @@ -833,15 +833,25 @@ TARGET_DEVICES += mc-mac1200r define Device/minibox-v1 $(Device/tplink-16mlzma) - DEVICE_TITLE := Gainstrong MiniBox V1.0 - DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-usb-ledtrig-usbport + DEVICE_TITLE := GainStrong MiniBox V1.0 + DEVICE_PACKAGES := kmod-usb-core kmod-usb2 BOARDNAME := MINIBOX-V1 DEVICE_PROFILE := MINIBOXV1 TPLINK_HWID := 0x3C000201 CONSOLE := ttyATH0,115200 + IMAGES := sysupgrade.bin endef TARGET_DEVICES += minibox-v1 +define Device/oolite-v1 + $(Device/minibox-v1) + DEVICE_TITLE := GainStrong Oolite V1.0 + BOARDNAME := OOLITE-V1 + DEVICE_PROFILE := OOLITEV1 + TPLINK_HWID := 0x3C000101 +endef +TARGET_DEVICES += oolite-v1 + define Device/omy-g1 $(Device/tplink-16mlzma) DEVICE_TITLE := OMYlink OMY-G1 @@ -959,17 +969,6 @@ define Device/tellstick-znet-lite endef TARGET_DEVICES += tellstick-znet-lite -define Device/oolite - $(Device/tplink-16mlzma) - DEVICE_TITLE := Gainstrong OOLITE - DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-usb-ledtrig-usbport - BOARDNAME := GS-OOLITE - DEVICE_PROFILE := OOLITE - TPLINK_HWID := 0x3C000101 - CONSOLE := ttyATH0,115200 -endef -TARGET_DEVICES += oolite - define Device/n5q DEVICE_TITLE := ALFA Network N5Q DEVICE_PACKAGES := rssileds -swconfig |