summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-06-26 21:35:39 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-06-26 21:35:39 +0000
commit53edff7d08e089f2cef5bd863517e3ca210f781e (patch)
treea100b67b696e82710a75ec8cd06d1cfcaf8804c3 /package
parent8b459b832791b5d2c39678deb6750e1348887998 (diff)
[package] add a cross-version of ksymoops
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16575 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/ksymoops/Makefile55
1 files changed, 55 insertions, 0 deletions
diff --git a/package/ksymoops/Makefile b/package/ksymoops/Makefile
new file mode 100644
index 000000000..be6f9b6be
--- /dev/null
+++ b/package/ksymoops/Makefile
@@ -0,0 +1,55 @@
+#
+# 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 @TARGET_mips||TARGET_mips||TARGET_m68k||TARGET_x86 +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))