From 50af40000ac37ef921ebd46f6d641959503ee919 Mon Sep 17 00:00:00 2001 From: nbd Date: Sat, 28 May 2005 09:17:29 +0000 Subject: move package/linux into target/linux, use wbx' new kernel code. support building images with more than one kernel, split kernel module parts off of packages that use their own kernel modules (fuse, shfs, openswan). some cleanup in the image building process in target/. image builder is disabled for now, needs some fixing. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1085 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/package/openswan/Config.in | 1 + openwrt/package/openswan/Makefile | 65 +++++++++----------------- openwrt/package/openswan/ipkg/openswan.control | 7 +++ openwrt/package/openswan/openswan.control | 7 --- 4 files changed, 29 insertions(+), 51 deletions(-) create mode 100644 openwrt/package/openswan/ipkg/openswan.control delete mode 100644 openwrt/package/openswan/openswan.control (limited to 'openwrt/package/openswan') diff --git a/openwrt/package/openswan/Config.in b/openwrt/package/openswan/Config.in index f8e8ec1a2..9db240276 100644 --- a/openwrt/package/openswan/Config.in +++ b/openwrt/package/openswan/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_OPENSWAN tristate "Openswan" select BR2_PACKAGE_LIBGMP + select BR2_PACKAGE_KMOD_OPENSWAN default m if CONFIG_DEVEL help Openswan is an implementation of IPsec for Linux. diff --git a/openwrt/package/openswan/Makefile b/openwrt/package/openswan/Makefile index db351f886..0e92d8a1b 100644 --- a/openwrt/package/openswan/Makefile +++ b/openwrt/package/openswan/Makefile @@ -11,26 +11,20 @@ PKG_SOURCE_URL:=http://www.openswan.org/download PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_CAT:=zcat -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) +include $(TOPDIR)/package/rules.mk -$(PKG_BUILD_DIR)/.patched: $(DL_DIR)/$(PKG_SOURCE) - $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - - $(PATCH) $(PKG_BUILD_DIR) ./patches - touch $(PKG_BUILD_DIR)/.patched +$(eval $(call PKG_template,OPENSWAN,openswan,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) FLAGS := $(TARGET_CFLAGS) -I$(PKG_BUILD_DIR)/linux/include -L$(STAGING_DIR)/usr/lib -I$(STAGING_DIR)/usr/include -$(PKG_BUILD_DIR)/$(PKG_NAME): $(PKG_BUILD_DIR)/.patched - $(MAKE) -C $(PKG_BUILD_DIR) \ - $(TARGET_CONFIGURE_OPTS) \ - KERNELSRC="$(LINUX_DIR)" \ - ARCH="mips" \ - USERCOMPILE="$(FLAGS)" \ - module +$(PKG_BUILD_DIR)/.built: +# $(MAKE) -C $(PKG_BUILD_DIR) \ +# $(TARGET_CONFIGURE_OPTS) \ +# KERNELSRC="$(LINUX_DIR)" \ +# ARCH="mips" \ +# USERCOMPILE="$(FLAGS)" \ +# module $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ KERNELSRC="$(LINUX_DIR)" \ @@ -42,41 +36,24 @@ $(PKG_BUILD_DIR)/$(PKG_NAME): $(PKG_BUILD_DIR)/.patched INC_USRLOCAL="/usr" \ programs -$(PKG_IPK): $(PKG_BUILD_DIR)/$(PKG_NAME) - $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) +$(IPKG_OPENSWAN): $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ - DESTDIR="$(PKG_IPK_DIR)" \ + DESTDIR="$(IDIR_OPENSWAN)" \ KERNELSRC="$(LINUX_DIR)" \ ARCH="mips" \ USERCOMPILE="$(FLAGS)" \ IPSECDIR="/usr/lib/ipsec" \ INC_USRLOCAL="/usr" \ install - -$(STRIP) $(PKG_IPK_DIR)/usr/lib/ipsec/* - -$(STRIP) $(PKG_IPK_DIR)/usr/libexec/ipsec/* - rm -rf $(PKG_IPK_DIR)/usr/share - rm -rf $(PKG_IPK_DIR)/usr/man - rm -rf $(PKG_IPK_DIR)/var - rm -rf $(PKG_IPK_DIR)/etc/rc.d/rc*.d - mkdir -p $(PKG_IPK_DIR)/etc/init.d - ln -sf ../rc.d/init.d/ipsec $(PKG_IPK_DIR)/etc/init.d/S60ipsec - mkdir -p $(PKG_IPK_DIR)/lib/modules/$(LINUX_VERSION) - cp $(PKG_BUILD_DIR)/modobj/ipsec.o $(PKG_IPK_DIR)/lib/modules/$(LINUX_VERSION)/ -# $(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note \ -# $(PKG_IPK_DIR)/lib/modules/$(LINUX_VERSION)/ipsec.o - mkdir -p $(PACKAGE_DIR) + -$(STRIP) $(IDIR_OPENSWAN)/usr/lib/ipsec/* + -$(STRIP) $(IDIR_OPENSWAN)/usr/libexec/ipsec/* + rm -rf $(IDIR_OPENSWAN)/usr/share + rm -rf $(IDIR_OPENSWAN)/usr/man + rm -rf $(IDIR_OPENSWAN)/var + rm -rf $(IDIR_OPENSWAN)/etc/rc.d/rc*.d + mkdir -p $(IDIR_OPENSWAN)/etc/init.d + ln -sf ../rc.d/init.d/ipsec $(IDIR_OPENSWAN)/etc/init.d/S60ipsec find $(PKG_BUILD_DIR) -name \*.old | xargs rm -rf - $(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)/.patched -compile: $(PKG_IPK) -install: $(IPKG_STATE_DIR)/info/$(PKG_NAME).list - -clean: - rm -rf $(PKG_BUILD_DIR) - rm -f $(PKG_IPK) + mkdir -p $(PACKAGE_DIR) + $(IPKG_BUILD) $(IDIR_OPENSWAN) $(PACKAGE_DIR) diff --git a/openwrt/package/openswan/ipkg/openswan.control b/openwrt/package/openswan/ipkg/openswan.control new file mode 100644 index 000000000..8b32620da --- /dev/null +++ b/openwrt/package/openswan/ipkg/openswan.control @@ -0,0 +1,7 @@ +Package: openswan +Section: base +Priority: optional +Maintainer: Felix Fietkau +Source: buildroot internal +depends: gmp, ip +Description: Openswan IPSec software diff --git a/openwrt/package/openswan/openswan.control b/openwrt/package/openswan/openswan.control deleted file mode 100644 index 8b32620da..000000000 --- a/openwrt/package/openswan/openswan.control +++ /dev/null @@ -1,7 +0,0 @@ -Package: openswan -Section: base -Priority: optional -Maintainer: Felix Fietkau -Source: buildroot internal -depends: gmp, ip -Description: Openswan IPSec software -- cgit v1.2.3