diff options
author | Andy Boyett <agb@openwrt.org> | 2009-06-30 05:52:36 +0000 |
---|---|---|
committer | Andy Boyett <agb@openwrt.org> | 2009-06-30 05:52:36 +0000 |
commit | cf666f42cf3e43bbe4b394379ea0e3eb00485232 (patch) | |
tree | df0588f7f92efa1e1686ddf15a7cc872bd85af59 | |
parent | c604fdef857813a2d00a51a4f92c6f29f9320dfb (diff) | |
download | upstream-cf666f42cf3e43bbe4b394379ea0e3eb00485232.tar.gz upstream-cf666f42cf3e43bbe4b394379ea0e3eb00485232.tar.bz2 upstream-cf666f42cf3e43bbe4b394379ea0e3eb00485232.zip |
move ksymoops from trunk/package/ to packages/devel/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16633 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/ksymoops/Makefile | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/package/ksymoops/Makefile b/package/ksymoops/Makefile deleted file mode 100644 index a92d3f445a..0000000000 --- a/package/ksymoops/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -# -# Copyright (C) 2009 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk -include $(INCLUDE_DIR)/kernel.mk - -PKG_NAME:=ksymoops -PKG_VERSION:=2.4.11 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 -PKG_SOURCE_URL:=@KERNEL/linux/utils/kernel/ksymoops/v2.4/ -PKG_MD5SUM:=4a8249e182a5dbc75e566d162e9f3314 - -include $(INCLUDE_DIR)/package.mk - -define Package/ksymoops - SECTION:=utils - CATEGORY:=Utilities - DEPENDS:=@LINUX_2_6 @mips||mipsel||m68k||i386 +libbfd - TITLE:=Interpret oops of the kernel - URL:=http://www.kernel.org/pub/linux/utils/kernel/ksymoops/v2.4/ - MENU:=1 -endef - -define Package/kexec-tools/description -endef - -define Build/Configure -endef - -TARGET=$(strip $(shell echo $(TARGET_CFLAGS) | cut -d- -f4 | cut -d= -f2)) - -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - CC="$(TARGET_CC)" \ - BFD_PREFIX="$(STAGING_DIR)/usr" \ - DEF_TARGET='\"$(TARGET)\"' \ - DEF_ARCH='\"$(ARCH)\"' \ - DEF_MAP='\"$(LINUX_DIR)/System.map\"' \ - CROSS="$(TARGET_CROSS)" \ - INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \ - all install -endef - -define Package/ksymoops/install - $(INSTALL_DIR) $(1)/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/bin/$(TARGET_CROSS)ksymoops $(1)/bin/ksymoops -endef - -$(eval $(call BuildPackage,ksymoops)) |