treewide: clean up and unify PKG_VERSION for git based downloads
[openwrt/staging/blogic.git] / target / linux / arm64 / image / boot-wrapper / Makefile
1 #
2 # Copyright (C) 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
10 PKG_NAME:=aarch64-boot-wrapper
11 PKG_RELEASE:=1
12
13 PKG_SOURCE_PROTO:=git
14 PKG_SOURCE_URL:=\
15 https://kernel.googlesource.com/pub/scm/linux/kernel/git/mark/boot-wrapper-aarch64 \
16 https://git.kernel.org/pub/scm/linux/kernel/git/mark/boot-wrapper-aarch64.git
17 PKG_SOURCE_DATE:=2013-01-10
18 PKG_SOURCE_VERSION:=c51dde817b5ed5b8f741b67ac51bd67bd87b4a2a
19 PKG_MIRROR_HASH:=2f029a20c906af68e9fe067c1b0ed394e4c455e142454a039f41d1d82d6e17c8
20 PKG_MAINTAINER:=Florian Fainelli <florian@openwrt.org>
21
22 include $(INCLUDE_DIR)/kernel.mk
23 include $(INCLUDE_DIR)/package.mk
24 include $(INCLUDE_DIR)/image.mk
25
26 define Build/Compile
27 $(MAKE) -C $(PKG_BUILD_DIR) \
28 KERNEL="../Image" \
29 DTC="$(LINUX_DIR)/scripts/dtc/dtc" \
30 FDT_SRC="$(LINUX_DIR)/arch/$(LINUX_KARCH)/boot/dts/arm/foundation-v8.dts" \
31 CROSS_COMPILE="$(TARGET_CROSS)" \
32 BOOTARGS="console=ttyAMA0 earlyprintk"
33 endef
34
35 define Build/InstallDev
36 $(CP) $(PKG_BUILD_DIR)/linux-system.axf $(KDIR)/linux-system.axf
37 endef
38
39 $(eval $(call Build/DefaultTargets))