2012-07-24 20:39:17 +00:00
|
|
|
#
|
2020-02-29 08:25:20 +00:00
|
|
|
# Copyright (C) 2012-2020 OpenWrt.org
|
2017-03-04 18:41:34 +00:00
|
|
|
# Copyright (C) 2017 LEDE project
|
2012-07-24 20:39:17 +00:00
|
|
|
#
|
|
|
|
# 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-08 20:58:55 +00:00
|
|
|
BOARD:=bcm27xx
|
2016-03-08 18:11:55 +00:00
|
|
|
BOARDNAME:=Broadcom BCM27xx
|
2018-12-27 20:56:28 +00:00
|
|
|
FEATURES:=ext4 audio usb usbgadget display gpio fpu squashfs rootfs-part boot-part
|
2019-08-02 18:35:59 +00:00
|
|
|
SUBTARGETS:=bcm2708 bcm2709 bcm2710 bcm2711
|
2012-07-24 20:39:17 +00:00
|
|
|
|
2020-03-16 09:19:19 +00:00
|
|
|
KERNEL_PATCHVER=5.4
|
2012-07-24 20:39:17 +00:00
|
|
|
|
|
|
|
define Target/Description
|
2016-03-08 18:11:55 +00:00
|
|
|
Build firmware image for Broadcom BCM27xx SoC devices.
|
2012-07-24 20:39:17 +00:00
|
|
|
Currently produces SD Card image for Raspberry Pi.
|
|
|
|
endef
|
|
|
|
|
2016-09-04 11:34:18 +00:00
|
|
|
include $(INCLUDE_DIR)/target.mk
|
2017-03-04 18:41:34 +00:00
|
|
|
DEFAULT_PACKAGES += \
|
2020-02-08 20:58:55 +00:00
|
|
|
bcm27xx-gpu-fw \
|
2017-03-04 18:41:34 +00:00
|
|
|
kmod-usb-hid \
|
|
|
|
kmod-sound-core kmod-sound-arm-bcm2835 \
|
|
|
|
kmod-fs-vfat kmod-nls-cp437 kmod-nls-iso8859-1 \
|
2018-06-14 15:21:19 +00:00
|
|
|
partx-utils mkf2fs e2fsprogs
|
2016-09-04 11:34:18 +00:00
|
|
|
|
2015-10-05 10:27:34 +00:00
|
|
|
KERNELNAME:=Image dtbs
|
2014-02-28 20:29:40 +00:00
|
|
|
|
2012-07-24 20:39:17 +00:00
|
|
|
$(eval $(call BuildTarget))
|