mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-30 18:47:06 +00:00
c02a2db05e
With the change in version schema the downloaded files changed, too, mostly the hash is now prefixed with a tilde `~` instead of a dash `-`. Since each downloaded archive contains folder with the same name as the archive, the checksum changed. Signed-off-by: Paul Spooren <mail@aparcar.org>
44 lines
952 B
Makefile
44 lines
952 B
Makefile
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=bcm63xx-cfe
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=https://github.com/openwrt/bcm63xx-cfe.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2021-06-22
|
|
PKG_SOURCE_VERSION:=e5050f37150b34deb547b50feccd0e7439cb5bd7
|
|
PKG_MIRROR_HASH:=a3e255903e398aa5627ab3a4b5fb2576f07e130a236e74f19d8b9830fe0d58f0
|
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/bcm63xx-cfe
|
|
SECTION:=boot
|
|
CATEGORY:=Boot Loaders
|
|
DEPENDS:=@(TARGET_bcm4908||TARGET_bcm63xx||TARGET_bmips)
|
|
TITLE:=bcm63xx-cfe
|
|
DEFAULT:=y
|
|
endef
|
|
|
|
define Package/bcm63xx-cfe/description
|
|
CFE RAM binaries for bcm63xx.
|
|
endef
|
|
|
|
define Build/Compile
|
|
true
|
|
endef
|
|
|
|
define Package/bcm63xx-cfe/install
|
|
true
|
|
endef
|
|
|
|
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
|
|
|
|
$(eval $(call BuildPackage,bcm63xx-cfe))
|