2017-09-06 19:19:45 +08:00
|
|
|
#
|
2020-03-01 12:01:42 +08:00
|
|
|
# Copyright (C) 2012-2020 OpenWrt.org
|
2017-09-06 19:19:45 +08:00
|
|
|
# Copyright (C) 2017 LEDE project
|
|
|
|
|
#
|
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
|
#
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
|
|
ARCH:=arm
|
2020-02-17 10:36:14 +08:00
|
|
|
BOARD:=bcm27xx
|
2017-09-06 19:19:45 +08:00
|
|
|
BOARDNAME:=Broadcom BCM27xx
|
2019-05-03 22:40:06 +08:00
|
|
|
FEATURES:=ext4 audio usb usbgadget display gpio fpu squashfs rootfs-part boot-part
|
2017-09-06 19:19:45 +08:00
|
|
|
MAINTAINER:=Álvaro Fernández Rojas <noltari@gmail.com>
|
2019-08-06 21:10:35 +08:00
|
|
|
SUBTARGETS:=bcm2708 bcm2709 bcm2710 bcm2711
|
2017-09-06 19:19:45 +08:00
|
|
|
|
2019-07-16 17:39:17 +08:00
|
|
|
KERNEL_PATCHVER:=4.19
|
2017-09-06 19:19:45 +08:00
|
|
|
|
|
|
|
|
define Target/Description
|
|
|
|
|
Build firmware image for Broadcom BCM27xx SoC devices.
|
|
|
|
|
Currently produces SD Card image for Raspberry Pi.
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
|
DEFAULT_PACKAGES += \
|
2020-02-17 10:36:14 +08:00
|
|
|
bcm27xx-gpu-fw \
|
2017-09-06 19:19:45 +08:00
|
|
|
kmod-usb-hid \
|
|
|
|
|
kmod-sound-core kmod-sound-arm-bcm2835 \
|
|
|
|
|
kmod-fs-vfat kmod-nls-cp437 kmod-nls-iso8859-1 \
|
2020-05-31 08:58:09 +08:00
|
|
|
partx-utils mkf2fs e2fsprogs \
|
2020-06-06 18:35:30 +08:00
|
|
|
htop autocore-arm
|
2017-09-06 19:19:45 +08:00
|
|
|
|
|
|
|
|
KERNELNAME:=Image dtbs
|
|
|
|
|
|
|
|
|
|
$(eval $(call BuildTarget))
|