arm64: boot-wrapper: add mirror checksum
[openwrt/openwrt.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_VERSION:=2013-01-10
12 PKG_RELEASE:=$(PKG_SOURCE_VERSION)
13
14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL:=https://git.kernel.org/pub/scm/linux/kernel/git/mark/boot-wrapper-aarch64.git
16 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
17 PKG_SOURCE_VERSION:=c51dde817b5ed5b8f741b67ac51bd67bd87b4a2a
18 PKG_MIRROR_MD5SUM:=2f029a20c906af68e9fe067c1b0ed394e4c455e142454a039f41d1d82d6e17c8
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
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))