mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-25 02:30:38 +02:00
add gmp, needed for openswan
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@448 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d9fa74487e
commit
fa8017e083
@ -31,6 +31,7 @@ source "package/ez-ipupdate/Config.in"
|
|||||||
|
|
||||||
comment "Libraries"
|
comment "Libraries"
|
||||||
source "package/zlib/Config.in"
|
source "package/zlib/Config.in"
|
||||||
|
source "package/gmp/Config.in"
|
||||||
source "package/libpcap/Config.in"
|
source "package/libpcap/Config.in"
|
||||||
source "package/libelf/Config.in"
|
source "package/libelf/Config.in"
|
||||||
source "package/matrixssl/Config.in"
|
source "package/matrixssl/Config.in"
|
||||||
|
@ -11,6 +11,7 @@ package-$(BR2_PACKAGE_DROPBEAR) += dropbear
|
|||||||
package-$(BR2_PACKAGE_DNSMASQ) += dnsmasq
|
package-$(BR2_PACKAGE_DNSMASQ) += dnsmasq
|
||||||
package-$(BR2_PACKAGE_EBTABLES) += ebtables
|
package-$(BR2_PACKAGE_EBTABLES) += ebtables
|
||||||
package-$(BR2_PACKAGE_EZIPUPDATE) += ez-ipupdate
|
package-$(BR2_PACKAGE_EZIPUPDATE) += ez-ipupdate
|
||||||
|
package-$(BR2_PACKAGE_GMP) += gmp
|
||||||
package-$(BR2_PACKAGE_HASERL) += haserl
|
package-$(BR2_PACKAGE_HASERL) += haserl
|
||||||
package-$(BR2_PACKAGE_IPTABLES) += iptables
|
package-$(BR2_PACKAGE_IPTABLES) += iptables
|
||||||
package-$(BR2_PACKAGE_IPROUTE2) += iproute2
|
package-$(BR2_PACKAGE_IPROUTE2) += iproute2
|
||||||
|
6
openwrt/package/gmp/Config.in
Normal file
6
openwrt/package/gmp/Config.in
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
config BR2_PACKAGE_GMP
|
||||||
|
tristate "libgmp"
|
||||||
|
default m
|
||||||
|
help
|
||||||
|
libgmp
|
||||||
|
|
67
openwrt/package/gmp/Makefile
Normal file
67
openwrt/package/gmp/Makefile
Normal file
@ -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)
|
8
openwrt/package/gmp/gmp.control
Normal file
8
openwrt/package/gmp/gmp.control
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
Package: gmp
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: 4.1.4-1
|
||||||
|
Architecture: mipsel
|
||||||
|
Maintainer: Waldemar Brodkorb <wbx@dass-it.de>
|
||||||
|
Source: buildroot internal
|
||||||
|
Description: GNU multiprecision library
|
@ -232,10 +232,6 @@ mtd_write(const char *trxfile, const char *mtd)
|
|||||||
int
|
int
|
||||||
mtd_update(const char *trxfile, const char *mtd)
|
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) {
|
if (mtd_erase("rootfs") != 0) {
|
||||||
fprintf(stderr, "Could not erase rootfs\n");
|
fprintf(stderr, "Could not erase rootfs\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user