2021-02-10 13:52:34 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
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
|
2021-02-10 13:52:34 +00:00
|
|
|
|
2012-07-24 20:39:17 +00:00
|
|
|
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
|
2022-04-06 21:07:55 +00:00
|
|
|
FEATURES:=audio boot-part display ext4 fpu gpio rootfs-part rtc squashfs usb usbgadget
|
2019-08-02 18:35:59 +00:00
|
|
|
SUBTARGETS:=bcm2708 bcm2709 bcm2710 bcm2711
|
2012-07-24 20:39:17 +00:00
|
|
|
|
2021-08-21 08:56:42 +00:00
|
|
|
KERNEL_PATCHVER=5.10
|
2022-05-16 21:40:32 +00:00
|
|
|
KERNEL_TESTING_PATCHVER:=5.15
|
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
|
2021-02-20 18:55:14 +00:00
|
|
|
|
|
|
|
DEFAULT_PACKAGES := $(filter-out urngd,$(DEFAULT_PACKAGES))
|
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))
|