[OpenWrt-Devel] [PATCH v2] uboot-at91: Add package for uboot on the at91 platform

Ben Whitten ben.whitten at gmail.com
Fri Dec 4 09:00:48 EST 2015


In-line;

On 3 December 2015 at 20:50, Ben Whitten <benwhitten at gmail.com> wrote:

> This patch adds a uboot package for at91 and honours COPTS.
> If the SPL binary is generated for the specified board it moves that too.
>
> Signed-off-by: Ben Whitten <benwhitten at gmail.com>
> ---
>  package/boot/uboot-at91/Makefile | 111
> +++++++++++++++++++++++++++++++++++++++
>  1 file changed, 111 insertions(+)
>  create mode 100644 package/boot/uboot-at91/Makefile
>
> diff --git a/package/boot/uboot-at91/Makefile
> b/package/boot/uboot-at91/Makefile
> new file mode 100644
> index 0000000..6b87d67
> --- /dev/null
> +++ b/package/boot/uboot-at91/Makefile
> @@ -0,0 +1,111 @@
> +#
> +# Copyright (C) 2013-2015 OpenWrt.org
> +#
> +# This is free software, licensed under the GNU General Public License v2.
> +# See /LICENSE for more information.
> +#
> +
> +include $(TOPDIR)/rules.mk
> +
> +PKG_NAME:=u-boot
> +PKG_VERSION:=2015.10
> +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_MD5SUM:=7c203b0fc3390a122d8e8b75f147eac5
> +
> +PKG_BUILD_PARALLEL:=1
> +
> +include $(INCLUDE_DIR)/package.mk
> +
> +define uboot/at91sam9263ek_nandflash
> +  TITLE:=U-Boot for the AT91SAM9263-EK board (NandFlash)
> +endef
> +
> +define uboot/at91sam9g20ek_nandflash
> +  TITLE:=U-Boot for the AT91SAM9G20-EK board (NandFlash)
> +endef
> +
> +define uboot/at91sam9g20ek_2mmc_nandflash
> +  TITLE:=U-Boot for the AT91SAM9G20-EK 2MMC board (NandFlash)
> +endef
> +
> +define uboot/at91sam9xeek_nandflash
> +  TITLE:=U-Boot for the AT91SAM9XE-EK board (NandFlash)
> +endef
> +
> +define uboot/at91sam9x5ek_nandflash
> +  TITLE:=U-Boot for the AT91SAM9X5-EK board (NandFlash)
> +endef
> +
> +UBOOTS := \
> +       at91sam9263ek_nandflash \
> +       at91sam9g20ek_nandflash \
> +       at91sam9g20ek_2mmc_nandflash \
> +       at91sam9xeek_nandflash \
> +       at91sam9x5ek_nandflash
> +
> +define Package/uboot/template
> +define Package/uboot-at91-$(1)
> +  SECTION:=boot
> +  CATEGORY:=Boot Loaders
> +  DEPENDS:=@TARGET_at91
> +  TITLE:=$(2)
> +  URL:=http://www.denx.de/wiki/U-Boot
> +  VARIANT:=$(1)
> +endef
> +endef
> +
> +define BuildUBootPackage
> +       $(eval $(uboot/Default))
> +       $(eval $(uboot/$(1)))
> +       $(call Package/uboot/template,$(1),$(TITLE))
> +endef
>

Forgot to remove uboot/Default, even though the fact it doesn't exist
doesn't seem to cause a problem.


> +
> +ifdef BUILD_VARIANT
> +$(eval $(call uboot/$(BUILD_VARIANT)))
> +UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
> +UBOOT_IMAGE:=$(if
> $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin)
> +endif
> +
> +define Build/Configure
> +       +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
> +               $(UBOOT_CONFIG)_config
> +endef
> +
> +define Build/Compile
> +       +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
> +               CROSS_COMPILE=$(TARGET_CROSS) \
> +               KCFLAGS="$(filter-out -fstack-protector, $(TARGET_CFLAGS))"
> +endef
> +
> +define Package/uboot/install/default
> +       $(INSTALL_DIR) $(BIN_DIR)/uboot-$(BOARD)-$(1)
> +       $(CP) \
> +               $(PKG_BUILD_DIR)/u-boot.bin \
> +
>  $(BIN_DIR)/uboot-$(BOARD)-$(1)/openwrt-$(BOARD)-$(1)-u-boot.bin
> +       if [ -e $(PKG_BUILD_DIR)/boot.bin ]; then \
> +               $(CP) \
> +                       $(PKG_BUILD_DIR)/boot.bin \
> +
>  $(BIN_DIR)/uboot-$(BOARD)-$(1)/openwrt-$(BOARD)-$(1)-boot.bin; \
> +       fi
> +endef
> +
> +define Package/uboot/install/template
> +define Package/uboot-at91-$(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-at91-$(u))) \
> +)
> --
> 1.9.1
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.infradead.org/pipermail/openwrt-devel/attachments/20151204/7fb908f5/attachment.htm>
-------------- next part --------------
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


More information about the openwrt-devel mailing list