Makefile 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #
  2. # Copyright (C) 2016 Jiang Yutang <[email protected]>
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=uboot-layerscape-armv8_32b
  9. PKG_VERSION:=2017.09
  10. PKG_RELEASE:=1
  11. # Layerscape ARMv8 platforms use 64-bit u-boot to support both 32-bit and 64-bit
  12. # kernel/rootfs. Since OpenWrt could only provide 32-bit toolchain for 32-bit targets,
  13. # 64-bit u-boot images git tree is provided here whose source code actually is
  14. # uboot-layerscape's source code.
  15. PKG_SOURCE_PROTO:=git
  16. PKG_SOURCE_URL:=https://github.com/yangbolu1991/u-boot-lede.git
  17. PKG_SOURCE_VERSION:=43cb4c0fcab237f8daa39c393cc1441b76b99fcf
  18. PKG_MIRROR_HASH:=f0ef74cd0a4aecd727e8c4046b50a869ddec8a4f382da77475ec433f86cdc39a
  19. PKG_MAINTAINER:=Yangbo Lu <[email protected]>
  20. include $(INCLUDE_DIR)/package.mk
  21. include $(INCLUDE_DIR)/kernel.mk
  22. define Package/uboot-layerscape-armv8_32b
  23. SECTION:=boot
  24. CATEGORY:=Boot Loaders
  25. DEPENDS:=@TARGET_layerscape_armv8_32b
  26. TITLE:=U-Boot for ARMv8 32-bit based Layerscape boards
  27. DEFAULT:=y
  28. HIDDEN:=1
  29. endef
  30. define Build/Configure
  31. endef
  32. define Build/Compile
  33. endef
  34. define Build/InstallDev
  35. $(INSTALL_DIR) $(STAGING_DIR_IMAGE)
  36. $(CP) $(PKG_BUILD_DIR)/ls1043ardb-uboot.bin $(STAGING_DIR_IMAGE)/ls1043ardb-armv8_32b-uboot.bin
  37. $(CP) $(PKG_BUILD_DIR)/ls1046ardb-uboot.bin $(STAGING_DIR_IMAGE)/ls1046ardb-armv8_32b-uboot.bin
  38. $(CP) $(PKG_BUILD_DIR)/ls1012ardb-uboot.bin $(STAGING_DIR_IMAGE)/ls1012ardb-armv8_32b-uboot.bin
  39. $(CP) $(PKG_BUILD_DIR)/ls1012afrdm-uboot.bin $(STAGING_DIR_IMAGE)/ls1012afrdm-armv8_32b-uboot.bin
  40. endef
  41. $(eval $(call BuildPackage,uboot-layerscape-armv8_32b))