From 152e98f5f5c88805dc0ae12f3571926e1409161c Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Thu, 24 Mar 2005 21:11:24 +0000 Subject: [PATCH] add gmp, needed for openswan SVN-Revision: 448 --- openwrt/package/Config.in | 1 + openwrt/package/Makefile | 1 + openwrt/package/gmp/Config.in | 6 +++ openwrt/package/gmp/Makefile | 67 +++++++++++++++++++++++++++++++++ openwrt/package/gmp/gmp.control | 8 ++++ openwrt/package/openwrt/mtd.c | 4 -- 6 files changed, 83 insertions(+), 4 deletions(-) create mode 100644 openwrt/package/gmp/Config.in create mode 100644 openwrt/package/gmp/Makefile create mode 100644 openwrt/package/gmp/gmp.control diff --git a/openwrt/package/Config.in b/openwrt/package/Config.in index e62e93cf82..46d62ffaf1 100644 --- a/openwrt/package/Config.in +++ b/openwrt/package/Config.in @@ -31,6 +31,7 @@ source "package/ez-ipupdate/Config.in" comment "Libraries" source "package/zlib/Config.in" +source "package/gmp/Config.in" source "package/libpcap/Config.in" source "package/libelf/Config.in" source "package/matrixssl/Config.in" diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 2466911d9b..8aab7f146a 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -11,6 +11,7 @@ package-$(BR2_PACKAGE_DROPBEAR) += dropbear package-$(BR2_PACKAGE_DNSMASQ) += dnsmasq package-$(BR2_PACKAGE_EBTABLES) += ebtables package-$(BR2_PACKAGE_EZIPUPDATE) += ez-ipupdate +package-$(BR2_PACKAGE_GMP) += gmp package-$(BR2_PACKAGE_HASERL) += haserl package-$(BR2_PACKAGE_IPTABLES) += iptables package-$(BR2_PACKAGE_IPROUTE2) += iproute2 diff --git a/openwrt/package/gmp/Config.in b/openwrt/package/gmp/Config.in new file mode 100644 index 0000000000..c70af8e3c7 --- /dev/null +++ b/openwrt/package/gmp/Config.in @@ -0,0 +1,6 @@ +config BR2_PACKAGE_GMP + tristate "libgmp" + default m + help + libgmp + diff --git a/openwrt/package/gmp/Makefile b/openwrt/package/gmp/Makefile new file mode 100644 index 0000000000..eb835c2f3f --- /dev/null +++ b/openwrt/package/gmp/Makefile @@ -0,0 +1,67 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=gmp +PKG_VERSION:=4.1.4 +PKG_RELEASE:=1 +PKG_MD5SUM:=0aa7d3b3f5b5ec5951e7dddd6f65e891 + +PKG_SOURCE_URL:=ftp://ftp.gnu.org/gnu/gmp/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_CAT:=bzcat +PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk +PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg + +$(DL_DIR)/$(PKG_SOURCE): + $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL) + +$(PKG_BUILD_DIR)/.unpacked: $(DL_DIR)/$(PKG_SOURCE) + $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - + touch $(PKG_BUILD_DIR)/.unpacked + +$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.unpacked + (cd $(PKG_BUILD_DIR); rm -rf config.cache; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --libexecdir=/usr/lib \ + --sysconfdir=/etc \ + --datadir=/usr/share \ + --localstatedir=/var \ + --mandir=/usr/man \ + --infodir=/usr/info \ + ); + touch $(PKG_BUILD_DIR)/.configured + +$(PKG_BUILD_DIR)/.libs/libgmp.so: $(PKG_BUILD_DIR)/.configured + $(MAKE) -C $(PKG_BUILD_DIR) + +$(PKG_IPK): $(PKG_BUILD_DIR)/.libs/libgmp.so + $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) + $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_IPK_DIR)" install + rm $(PKG_IPK_DIR)/usr/lib/*.la + rm $(PKG_IPK_DIR)/usr/lib/*.a + $(STRIP) $(PKG_IPK_DIR)/usr/lib/*.so + mkdir -p $(PACKAGE_DIR) + $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) + +$(IPKG_STATE_DIR)/info/$(PKG_NAME).list: $(PKG_IPK) + $(IPKG) install $(PKG_IPK) + +source: $(DL_DIR)/$(PKG_SOURCE) +prepare: $(PKG_BUILD_DIR)/.unpacked +compile: $(PKG_IPK) +install: $(IPKG_STATE_DIR)/info/$(PKG_NAME).list + +clean: + rm -rf $(PKG_BUILD_DIR) + rm -f $(PKG_IPK) diff --git a/openwrt/package/gmp/gmp.control b/openwrt/package/gmp/gmp.control new file mode 100644 index 0000000000..43b569fbc2 --- /dev/null +++ b/openwrt/package/gmp/gmp.control @@ -0,0 +1,8 @@ +Package: gmp +Priority: optional +Section: net +Version: 4.1.4-1 +Architecture: mipsel +Maintainer: Waldemar Brodkorb +Source: buildroot internal +Description: GNU multiprecision library diff --git a/openwrt/package/openwrt/mtd.c b/openwrt/package/openwrt/mtd.c index 163dcc4391..13f4bf1959 100644 --- a/openwrt/package/openwrt/mtd.c +++ b/openwrt/package/openwrt/mtd.c @@ -232,10 +232,6 @@ mtd_write(const char *trxfile, const char *mtd) int mtd_update(const char *trxfile, const char *mtd) { - if (mtd_unlock(mtd) != 0) { - fprintf(stderr, "Could not unlock mtd device: %s\n", mtd); - exit(1); - } if (mtd_erase("rootfs") != 0) { fprintf(stderr, "Could not erase rootfs\n"); exit(1);