bd7e2ae536d6ea541a2725c94f682cbc66e50599
[openwrt/staging/wigyori.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:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
17 PKG_SOURCE_URL:=git://arago-project.org/git/projects/am33x-cm3.git
18 PKG_SOURCE_VERSION:=32cf44e25b5828b87af6dceebc3a49fed5d858ac
19 PKG_MD5SUM:=40a6b7edae5e5cfff99bebde2bf20b97
20
21 PKG_MAINTAINER:=Imre Kaloz <kaloz@openwrt.org>
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))