mirror of https://github.com/hak5/openwrt-owl.git
parent
366c33962c
commit
ce997eb591
|
@ -7,90 +7,34 @@
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=u-boot
|
|
||||||
PKG_VERSION:=2016.01
|
PKG_VERSION:=2016.01
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
||||||
PKG_SOURCE_URL:= \
|
|
||||||
http://mirror2.openwrt.org/sources \
|
|
||||||
ftp://ftp.denx.de/pub/u-boot
|
|
||||||
PKG_HASH:=e5792fba9399d9804aa2ef667f14ff771e2cdece72367d340250265bf095a5d5
|
PKG_HASH:=e5792fba9399d9804aa2ef667f14ff771e2cdece72367d340250265bf095a5d5
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-2.0 GPL-2.0+
|
include $(INCLUDE_DIR)/u-boot.mk
|
||||||
PKG_LICENSE_FILES:=Licenses/README
|
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
define uboot/Default
|
define U-Boot/Default
|
||||||
TITLE:=
|
BUILD_TARGET:=mxs
|
||||||
CONFIG:=
|
UBOOT_IMAGE:=u-boot.sb
|
||||||
IMAGE:=
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define uboot/mx23_olinuxino
|
define U-Boot/mx23_olinuxino
|
||||||
TITLE:=U-Boot 2016.01 for the Olinuxino i.MX233
|
NAME:=Olinuxino i.MX233
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define uboot/duckbill
|
define U-Boot/duckbill
|
||||||
TITLE:=U-Boot 2016.01 for the I2SE Duckbill
|
NAME:=I2SE Duckbill
|
||||||
endef
|
endef
|
||||||
|
|
||||||
UBOOTS := \
|
UBOOT_TARGETS := \
|
||||||
mx23_olinuxino \
|
mx23_olinuxino \
|
||||||
duckbill
|
duckbill
|
||||||
|
|
||||||
define Package/uboot/template
|
|
||||||
define Package/uboot-mxs-$(1)
|
|
||||||
SECTION:=boot
|
|
||||||
CATEGORY:=Boot Loaders
|
|
||||||
DEPENDS:=@TARGET_mxs
|
|
||||||
TITLE:=$(2)
|
|
||||||
URL:=http://www.denx.de/wiki/U-Boot
|
|
||||||
VARIANT:=$(1)
|
|
||||||
MAINTAINER:=Zoltan HERPAI <wigyori@uid0.hu>
|
|
||||||
endef
|
|
||||||
endef
|
|
||||||
|
|
||||||
define BuildUBootPackage
|
|
||||||
$(eval $(uboot/Default))
|
|
||||||
$(eval $(uboot/$(1)))
|
|
||||||
$(call Package/uboot/template,$(1),$(TITLE))
|
|
||||||
endef
|
|
||||||
|
|
||||||
ifdef BUILD_VARIANT
|
|
||||||
$(eval $(call uboot/$(BUILD_VARIANT)))
|
|
||||||
UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
|
|
||||||
UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),u-boot.sb)
|
|
||||||
endif
|
|
||||||
|
|
||||||
define Build/Configure
|
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
||||||
$(UBOOT_CONFIG)_config
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
CROSS_COMPILE=$(TARGET_CROSS) $(UBOOT_IMAGE)
|
CROSS_COMPILE=$(TARGET_CROSS) $(UBOOT_IMAGE)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/uboot/install/default
|
$(eval $(call BuildPackage/U-Boot))
|
||||||
$(INSTALL_DIR) $(BIN_DIR)/uboot-$(BOARD)-$(1)
|
|
||||||
$(CP) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(BIN_DIR)/uboot-$(BOARD)-$(1)/uboot-$(BOARD)-$(1).sb
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/uboot/install/template
|
|
||||||
define Package/uboot-mxs-$(1)/install
|
|
||||||
$(call Package/uboot/install/default,$(2))
|
|
||||||
endef
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(foreach u,$(UBOOTS), \
|
|
||||||
$(eval $(call Package/uboot/install/template,$(u),$(u))) \
|
|
||||||
)
|
|
||||||
|
|
||||||
$(foreach u,$(UBOOTS), \
|
|
||||||
$(eval $(call BuildUBootPackage,$(u))) \
|
|
||||||
$(eval $(call BuildPackage,uboot-mxs-$(u))) \
|
|
||||||
)
|
|
||||||
|
|
Loading…
Reference in New Issue