2020-05-14 16:19:35 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
|
|
|
|
PKG_NAME:=bcm63xx-cfe
|
2021-03-05 13:37:01 +00:00
|
|
|
PKG_RELEASE:=2
|
2020-05-14 16:19:35 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_URL:=https://github.com/openwrt/bcm63xx-cfe.git
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2021-03-05 09:14:28 +00:00
|
|
|
PKG_SOURCE_DATE:=2021-03-05
|
2021-03-05 13:37:01 +00:00
|
|
|
PKG_SOURCE_VERSION:=d03501629fc8b1ba8f9b0961d543c256a3d0098f
|
|
|
|
PKG_MIRROR_HASH:=b32a6f68d59c8f4534def7ec2568ad7da7a612a605b9406328309c78115ee88d
|
2020-05-14 16:19:35 +00:00
|
|
|
|
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/bcm63xx-cfe
|
|
|
|
SECTION:=boot
|
|
|
|
CATEGORY:=Boot Loaders
|
2020-05-17 15:24:47 +00:00
|
|
|
DEPENDS:=@(TARGET_bcm4908||TARGET_bcm63xx||TARGET_bmips)
|
2020-05-14 16:19:35 +00:00
|
|
|
TITLE:=bcm63xx-cfe
|
2021-01-15 09:44:12 +00:00
|
|
|
DEFAULT:=y
|
2020-05-14 16:19:35 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/bcm63xx-cfe/description
|
|
|
|
CFE RAM binaries for bcm63xx.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
true
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/bcm63xx-cfe/install
|
|
|
|
true
|
|
|
|
endef
|
|
|
|
|
2020-05-20 06:37:04 +00:00
|
|
|
define Build/InstallDev
|
|
|
|
rm -rf $(KERNEL_BUILD_DIR)/$(PKG_NAME)
|
|
|
|
mkdir -p $(KERNEL_BUILD_DIR)/$(PKG_NAME)
|
|
|
|
$(CP) -r $(PKG_BUILD_DIR)/* $(KERNEL_BUILD_DIR)/$(PKG_NAME)
|
|
|
|
endef
|
|
|
|
|
2020-05-14 16:19:35 +00:00
|
|
|
$(eval $(call BuildPackage,bcm63xx-cfe))
|