diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-02-19 07:43:13 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-02-19 07:43:13 +0000 |
commit | 452af57354f45fc7db050646d9fa7e674a6f327d (patch) | |
tree | b04a2522874a4f57f7983bc6af5bd8a9b6ff3944 /openwrt/package/Makefile.in | |
parent | 75daacb6bcd32739932175a8b6a36c4aac185e21 (diff) |
sync with buildroot2 from uclibc, add two variables PACKAGE_DIR and PATCH, remove LINKSYS_TGZ_SITE from here
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@265 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/Makefile.in')
-rw-r--r-- | openwrt/package/Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/openwrt/package/Makefile.in b/openwrt/package/Makefile.in index e8ec23efc..0d600d0a5 100644 --- a/openwrt/package/Makefile.in +++ b/openwrt/package/Makefile.in @@ -1,5 +1,3 @@ -LINKSYS_TGZ_SITE=http://openwrt.openbsd-geek.de - MAKE1=make MAKE=make -j$(BR2_JLEVEL) @@ -17,8 +15,8 @@ TARGET_CFLAGS=$(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING) HOSTCC:=gcc BASE_DIR:=${shell pwd} DL_DIR:=$(BASE_DIR)/dl -#PATCH_DIR=$(BASE_DIR)/sources/patches BUILD_DIR:=$(BASE_DIR)/build_$(ARCH)$(ARCH_FPU_SUFFIX) +PACKAGE_DIR:=$(BASE_DIR)/package TARGET_DIR:=$(BUILD_DIR)/root TOOL_BUILD_DIR=$(BASE_DIR)/toolchain_build_$(ARCH)$(ARCH_FPU_SUFFIX) # Strip off the annoying quoting @@ -32,6 +30,7 @@ KERNEL_CROSS=$(STAGING_DIR)/bin/$(OPTIMIZE_FOR_CPU)-linux-uclibc- TARGET_CROSS=$(STAGING_DIR)/bin/$(OPTIMIZE_FOR_CPU)-linux-uclibc- TARGET_CC=$(TARGET_CROSS)gcc STRIP=$(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note +PATCH=toolchain/patch-kernel.sh HOST_ARCH:=$(shell $(HOSTCC) -dumpmachine | sed -e s'/-.*//' \ |