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 | 76ed58d705e7f3892a1259abcd92882a527e7b53 (patch) | |
tree | 80dfa6ecb493ee8cb9ca1436f1b37ee89f320a55 /package/openwrt/Makefile | |
parent | e285af3e184318b0fefeab597ae5ee4a2628422d (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/openwrt@1085 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openwrt/Makefile')
-rw-r--r-- | package/openwrt/Makefile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/package/openwrt/Makefile b/package/openwrt/Makefile index ea2bfd858..850c8729a 100644 --- a/package/openwrt/Makefile +++ b/package/openwrt/Makefile @@ -8,8 +8,6 @@ PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_RELEASE)_$(ARCH).ipk PKG_IPK_DIR:=$(PKG_BUILD_DIR)/ipkg -PKG_WLCOMPAT := $(PACKAGE_DIR)/kmod-wlcompat_$(LINUX_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk - SHARED_INCLUDE:=${shell pwd}/include libshared-compile libnvram-compile: @@ -66,36 +64,12 @@ $(PKG_IPK): $(PKG_IPK_DIR)/sbin/mtd $(PKG_IPK_DIR)/sbin/jffs2root $(PKG_IPK_DIR) $(IPKG_STATE_DIR)/info/$(PKG_NAME).list: $(PKG_IPK) $(IPKG) install $< -$(IPKG_STATE_DIR)/info/kmod-wlcompat.list: $(PKG_WLCOMPAT) - $(IPKG) install $< - - -WLCOMPAT_FLAGS:=$(TARGET_CLFAGS) -D__KERNEL__ -fno-strict-aliasing -fno-common -fomit-frame-pointer -G 0 \ - -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 \ - -Wa,-mips32 -Wa,--trap -DMODULE -mlong-calls -fno-common -I. -I linux-2.4 -funsigned-char -nostdinc \ - -iwithprefix include -I$(LINUX_DIR)/include -I$(LINUX_DIR)/include/asm/gcc -I./include -c - -$(PKG_BUILD_DIR)/wlcompat.o: - $(TARGET_CC) $(WLCOMPAT_FLAGS) -o $@ wlcompat.c - -$(PKG_BUILD_DIR)/wlcompat-debug.o: - $(TARGET_CC) -DDEBUG $(WLCOMPAT_FLAGS) -o $@ wlcompat.c - -$(PKG_WLCOMPAT): $(PKG_BUILD_DIR)/wlcompat.o $(PKG_BUILD_DIR)/wlcompat-debug.o - $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_BUILD_DIR)/wlcompat kmod-wlcompat.control $(LINUX_VERSION)-$(PKG_RELEASE) $(ARCH) - mkdir -p $(PKG_BUILD_DIR)/wlcompat/etc/modules.d - echo "wlcompat" > $(PKG_BUILD_DIR)/wlcompat/etc/modules.d/10-wlcompat - mkdir -p $(PKG_BUILD_DIR)/wlcompat/lib/modules/$(LINUX_VERSION) - cp $^ $(PKG_BUILD_DIR)/wlcompat/lib/modules/$(LINUX_VERSION)/ - $(IPKG_BUILD) $(PKG_BUILD_DIR)/wlcompat $(PACKAGE_DIR) - source: $(DL_DIR)/$(LINKSYS_WLCONF_TGZ) prepare: $(LINKSYS_WLCONF_DIR)/.unpacked compile: prepare libnvram-compile libshared-compile $(PKG_IPK) $(PKG_WLCOMPAT) install: libnvram-install libshared-install \ $(TARGET_DIR)/usr/sbin/wlconf \ $(IPKG_STATE_DIR)/info/$(PKG_NAME).list \ - $(IPKG_STATE_DIR)/info/kmod-wlcompat.list clean: libshared-clean libnvram-clean rm -rf $(PKG_BUILD_DIR) |