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