OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #
2 # Copyright (C) 2012-2013 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7  
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10  
11 PKG_VERSION:=2017.01
3 office 12 PKG_RELEASE:=2
1 office 13  
14 PKG_HASH:=6c425175f93a4bcf2ec9faf5658ef279633dbd7856a293d95bd1ff516528ecf2
15  
16 include $(INCLUDE_DIR)/u-boot.mk
17 include $(INCLUDE_DIR)/package.mk
18  
19 define U-Boot/Default
20 BUILD_TARGET:=omap
21 UBOOT_IMAGE:=u-boot.img MLO
22 UENV:=default
23 endef
24  
25 define U-Boot/omap4_panda
26 NAME:=Pandaboard
3 office 27 BUILD_DEVICES:=omap4-panda
1 office 28 endef
29  
30 define U-Boot/am335x_boneblack
31 NAME:=TI AM335x BeagleBone Black
3 office 32 BUILD_DEVICES:=am335x-boneblack
1 office 33 endef
34  
35 define U-Boot/am335x_evm
36 NAME:=AM335x EVM
3 office 37 BUILD_DEVICES:=am335x-evm
1 office 38 endef
39  
40 define U-Boot/omap3_overo
41 NAME:=Gumstix Overo
42 endef
43  
44 define U-Boot/omap3_beagle
45 NAME:=BeagleBoard
3 office 46 BUILD_DEVICES:=omap3-beagle
1 office 47 endef
48  
49 UBOOT_TARGETS:=omap4_panda am335x_evm omap3_overo omap3_beagle am335x_boneblack
50  
51 define Build/InstallDev
52 $(INSTALL_DIR) $(STAGING_DIR_IMAGE)/$(BUILD_DEVICES)
53 $(CP) $(patsubst %,$(PKG_BUILD_DIR)/%,$(UBOOT_IMAGE)) $(STAGING_DIR_IMAGE)/$(BUILD_DEVICES)/
54 $(CP) ./files/uEnv-$(UENV).txt $(STAGING_DIR_IMAGE)/$(BUILD_DEVICES)/uEnv.txt
55 endef
56  
57 $(eval $(call BuildPackage/U-Boot))