tools/squashfs4: include sysmacros.h explicitly
[openwrt/openwrt.git] / package / firmware / am33x-cm3 / Makefile
1 #
2 # Copyright (C) 2014 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:=am33x-cm3
11 PKG_VERSION:=20130304
12 PKG_RELEASE:=1
13
14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL:=http://arago-project.org/git/projects/am33x-cm3.git
16 PKG_SOURCE_VERSION:=32cf44e25b5828b87af6dceebc3a49fed5d858ac
17 PKG_MIRROR_HASH:=71d4029eed4ef58a1e0beb299d5c876bf0b9a790ecac52aacf1d510f5841d959
18
19 PKG_MAINTAINER:=Imre Kaloz <kaloz@openwrt.org>
20
21 PKG_FLAGS:=nonshared
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/am33x-cm3
26 SECTION:=firmware
27 CATEGORY:=Firmware
28 URL:=http://arago-project.org/git/projects/?p=am33x-cm3.git
29 TITLE:=TI AM335x PM firmware
30 DEPENDS:=@TARGET_omap
31 endef
32
33 define Build/Compile
34 $(MAKE) CROSS_COMPILE=$(TARGET_CROSS) -C $(PKG_BUILD_DIR)
35 endef
36
37 define Package/am33x-cm3/install
38 $(INSTALL_DIR) $(1)/lib/firmware
39 $(CP) $(PKG_BUILD_DIR)/bin/am335x-pm-firmware.bin $(1)/lib/firmware
40 endef
41
42 $(eval $(call BuildPackage,am33x-cm3))