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/openwrt@1085 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Felix Fietkau
2005-05-28 09:17:29 +00:00
parent fdd5681c06
commit 1c4a2a55f7
234 changed files with 1012 additions and 121969 deletions

View File

@@ -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.

View File

@@ -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)