Explorar o código

add dtc, the device tree compiler

SVN-Revision: 10302
Imre Kaloz %!s(int64=18) %!d(string=hai) anos
pai
achega
36984a4cb5
Modificáronse 2 ficheiros con 34 adicións e 1 borrados
  1. 1 1
      tools/Makefile
  2. 33 0
      tools/dtc/Makefile

+ 1 - 1
tools/Makefile

@@ -9,7 +9,7 @@
 curdir:=tools
 
 # subdirectories to descend into
-$(curdir)/builddirs := sed sstrip ipkg-utils genext2fs squashfs mtd-utils lzma mkimage firmware-utils patch-cmdline pkg-config automake $(if $(CONFIG_CCACHE),ccache)
+$(curdir)/builddirs := sed sstrip ipkg-utils genext2fs squashfs mtd-utils lzma mkimage firmware-utils patch-cmdline pkg-config automake $(if $(CONFIG_CCACHE),ccache) dtc
 
 # builddir dependencies
 $(curdir)/squashfs/compile := $(curdir)/lzma/install

+ 33 - 0
tools/dtc/Makefile

@@ -0,0 +1,33 @@
+#
+# Copyright (C) 2008 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=dtc
+PKG_VERSION:=1.1.0
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
+PKG_SOURCE_URL:=http://www.jdl.com/software
+PKG_MD5SUM:=6c84b01f500bc989b0b1ad6138fb93d5
+PKG_CAT:=zcat
+PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)
+
+include $(INCLUDE_DIR)/host-build.mk
+
+define Build/Compile
+	$(MAKE) -C $(PKG_BUILD_DIR)
+endef
+
+define Build/Install
+	$(INSTALL_BIN) $(PKG_BUILD_DIR)/dtc $(STAGING_DIR_HOST)/bin/
+endef
+
+define Build/Clean
+	rm -f $(STAGING_DIR_HOST)/bin/dtc
+endef
+
+$(eval $(call HostBuild))