mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +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>
10 lines
335 B
Makefile
10 lines
335 B
Makefile
define Device/generic
|
|
DEVICE_VENDOR := Generic
|
|
DEVICE_MODEL := x86
|
|
DEVICE_PACKAGES += kmod-3c59x kmod-8139too kmod-e100 kmod-e1000 kmod-natsemi \
|
|
kmod-ne2k-pci kmod-pcnet32 kmod-r8169 kmod-sis900 kmod-tg3 \
|
|
kmod-via-rhine kmod-via-velocity kmod-forcedeth kmod-fs-vfat
|
|
GRUB2_VARIANT := generic
|
|
endef
|
|
TARGET_DEVICES += generic
|