mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-02 12:22:29 +00:00
c848bc6cd5
The supported MT7623 boards are mostly identical (what with being a System-on-Chip and all), so unify the DEVICE_PACKAGES for them, and add ext4 and usb support for them. Signed-off-by: David Woodhouse <dwmw2@infradead.org>
24 lines
839 B
Makefile
24 lines
839 B
Makefile
KERNEL_LOADADDR := 0x80008000
|
|
|
|
define Device/bpi_bananapi-r2
|
|
DEVICE_VENDOR := Bpi
|
|
DEVICE_MODEL := Banana Pi R2
|
|
DEVICE_DTS := mt7623n-bananapi-bpi-r2
|
|
SUPPORTED_DEVICES := bananapi,bpi-r2
|
|
DEVICE_PACKAGES := kmod-fs-vfat kmod-nls-cp437 kmod-nls-iso8859-1 kmod-mmc \
|
|
mkf2fs e2fsprogs kmod-usb-ohci kmod-usb2 kmod-usb3
|
|
endef
|
|
TARGET_DEVICES += bpi_bananapi-r2
|
|
|
|
define Device/unielec_u7623-02-emmc-512m
|
|
DEVICE_VENDOR := UniElec
|
|
DEVICE_MODEL := U7623-02
|
|
DEVICE_VARIANT := eMMC/512MB RAM
|
|
DEVICE_DTS := mt7623a-unielec-u7623-02-emmc-512m
|
|
IMAGES := sysupgrade-emmc.bin.gz
|
|
IMAGE/sysupgrade-emmc.bin.gz := sysupgrade-emmc | gzip | append-metadata
|
|
DEVICE_PACKAGES := kmod-fs-vfat kmod-nls-cp437 kmod-nls-iso8859-1 kmod-mmc \
|
|
mkf2fs e2fsprogs kmod-usb-ohci kmod-usb2 kmod-usb3
|
|
endef
|
|
TARGET_DEVICES += unielec_u7623-02-emmc-512m
|