mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 06:33:41 +00:00
e2f284dbd1
Remove use of DEVICE_TITLE in favor of the DEVICE_VENDOR and DEVICE_MODEL as used by all other targets. Signed-off-by: Moritz Warning <moritzwarning@web.de>
17 lines
500 B
Makefile
17 lines
500 B
Makefile
define Device/generic
|
|
DEVICE_VENDOR := Generic
|
|
DEVICE_MODEL := x86/Geode
|
|
DEVICE_PACKAGES += kmod-crypto-cbc kmod-crypto-hw-geode kmod-ledtrig-gpio
|
|
GRUB2_VARIANT := legacy
|
|
endef
|
|
TARGET_DEVICES += generic
|
|
|
|
define Device/geos
|
|
$(call Device/generic)
|
|
DEVICE_VENDOR := Traverse Technologies
|
|
DEVICE_MODEL := Geos
|
|
DEVICE_PACKAGES += br2684ctl flashrom kmod-hwmon-lm90 kmod-mppe kmod-pppoa \
|
|
kmod-usb-ohci-pci linux-atm ppp-mod-pppoa pppdump pppstats soloscli tc
|
|
endef
|
|
TARGET_DEVICES += geos
|