diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2022-01-03 13:47:45 +0100 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2022-01-03 13:49:19 +0100 |
commit | c8d4c89daae4c406f3744ca52c7451fe07c9a59e (patch) | |
tree | e04c8697a11dcd2375ca2e47315b7126823aa497 | |
parent | 978e2265968e36c9dc03004225198b85570f60d2 (diff) |
dtc: drop package
It has been imported as core package into OpenWrt repository. Its fdtget
is required by sysupgrade on U-Boot devices so it couldn't live in an
extra feed.
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
-rw-r--r-- | libs/dtc/Makefile | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/libs/dtc/Makefile b/libs/dtc/Makefile deleted file mode 100644 index 34aa76602..000000000 --- a/libs/dtc/Makefile +++ /dev/null @@ -1,96 +0,0 @@ -# -# Copyright (C) 2016-2019 Yousong Zhou <yszhou4tech@gmail.com> -# -# 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.6.1 -PKG_RELEASE:=$(AUTORELEASE) - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz -PKG_HASH:=65cec529893659a49a89740bb362f507a3b94fc8cd791e76a8d6a2b6f3203473 -PKG_SOURCE_URL:=@KERNEL/software/utils/dtc - -PKG_MAINTAINER:=Yousong Zhou <yszhou4tech@gmail.com> -PKG_LICENSE:=GPL-2.0-only -PKG_LICENSE_FILES:=GPL - -PKG_INSTALL:=1 - -include $(INCLUDE_DIR)/package.mk -include $(INCLUDE_DIR)/meson.mk - -define Package/dtc - SECTION:=utils - CATEGORY:=Utilities - TITLE:=Device Tree Compiler - URL:=https://git.kernel.org/pub/scm/utils/dtc/dtc.git -endef - -define Package/dtc/description - Device Tree Compiler for Flat Device Trees Device Tree Compiler, dtc, takes - as input a device-tree in a given format and outputs a device-tree in another - format for booting kernels on embedded systems. -endef - -define Package/dtc/install - $(INSTALL_DIR) $(1)/usr/bin - $(CP) $(PKG_INSTALL_DIR)/usr/bin/dtc $(1)/usr/bin -endef - - -# See Documentation/manual.txt for details about each utility -define Package/fdt-utils - SECTION:=utils - CATEGORY:=Utilities - TITLE:=Flat Device Tree Utilities - URL:=https://git.kernel.org/pub/scm/utils/dtc/dtc.git - DEPENDS:=+libfdt -endef - -define Package/fdt-utils/install - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/convert-dtsv0 $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/fdtdump $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/fdtget $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/fdtput $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/fdtoverlay $(1)/usr/bin -endef - - -define Package/libfdt - SECTION:=libs - CATEGORY:=Libraries - TITLE:=a utility library for reading and manipulating dtb files - URL:=https://git.kernel.org/pub/scm/utils/dtc/dtc.git -endef - -define Package/libfdt/description - This is a library containing functions for manipulating Flat Device Trees. -endef - -define Package/libfdt/install - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libfdt*.so* $(1)/usr/lib -endef - -MESON_ARGS += \ - -Dtools=true \ - -Dyaml=disabled \ - -Dvalgrind=disabled \ - -Dpython=disabled - -define Build/InstallDev - $(INSTALL_DIR) $(1)/usr/lib - $(INSTALL_DIR) $(1)/usr/include - $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include - $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib -endef - -$(eval $(call BuildPackage,dtc)) -$(eval $(call BuildPackage,fdt-utils)) -$(eval $(call BuildPackage,libfdt)) |