diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-28 09:17:29 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-28 09:17:29 +0000 |
commit | 50af40000ac37ef921ebd46f6d641959503ee919 (patch) | |
tree | 823ff43388135467a5c7a60589acf62d173cedc4 /openwrt/package/openswan | |
parent | 16530342e5f63527dc2e0c78dcaef4f4b68ceb48 (diff) |
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
Diffstat (limited to 'openwrt/package/openswan')
-rw-r--r-- | openwrt/package/openswan/Config.in | 1 | ||||
-rw-r--r-- | openwrt/package/openswan/Makefile | 65 | ||||
-rw-r--r-- | openwrt/package/openswan/ipkg/openswan.control (renamed from openwrt/package/openswan/openswan.control) | 0 |
3 files changed, 22 insertions, 44 deletions
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/openswan.control b/openwrt/package/openswan/ipkg/openswan.control index 8b32620da..8b32620da 100644 --- a/openwrt/package/openswan/openswan.control +++ b/openwrt/package/openswan/ipkg/openswan.control |