fix a few directories missed in [4176]'s source -> download
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 21 Jul 2006 17:00:14 +0000 (17:00 +0000)
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 21 Jul 2006 17:00:14 +0000 (17:00 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4198 3c298f89-4303-0410-b956-a3cf2f4a3e73

Makefile
include/host-build.mk
include/image.mk
include/kernel-build.mk
target/image/brcm/lzma-loader/Makefile
target/image/generic/lzma-loader/Makefile
target/linux/Makefile
target/linux/ar7-2.4/Makefile
target/sdk/Makefile
target/utils/Makefile

index 27526d0..e2e467c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -66,7 +66,7 @@ menuconfig: ./scripts/config/mconf FORCE
        $< Config.in
 
 config-clean: FORCE
-       $(MAKE) -C scripts/config clean
+       $(NO_TRACE_MAKE) -C scripts/config clean
 
 package/%: .pkginfo FORCE
        $(MAKE) -C package $(patsubst package/%,%,$@)
index 43c8314..9a5a413 100644 (file)
@@ -64,7 +64,7 @@ endef
 
                
 ifneq ($(strip $(PKG_SOURCE)),)
-  source: $(DL_DIR)/$(PKG_SOURCE)
+  download: $(DL_DIR)/$(PKG_SOURCE)
 
   $(DL_DIR)/$(PKG_SOURCE):
        mkdir -p $(DL_DIR)
@@ -101,7 +101,7 @@ define HostBuild
        $(call Build/Uninstall)
        rm -f $(STAGING_DIR)/stampfiles/.host_$(PKG_NAME)-installed
 
-  source:
+  download:
   prepare: $(PKG_BUILD_DIR)/.prepared
   configure: $(PKG_BUILD_DIR)/.configured
 
index 54f0e8b..87d6815 100644 (file)
@@ -87,7 +87,7 @@ compile-targets:
 install-targets:
 clean-targets:
 
-source:
+download:
 prepare:
 compile: compile-targets
 install: compile install-targets
index 3fb96e1..38ea9a1 100644 (file)
@@ -106,7 +106,7 @@ pkg-install: FORCE
                $(IPKG) install $$pkg || echo; \
        done
 
-source: $(DL_DIR)/$(LINUX_SOURCE)
+download: $(DL_DIR)/$(LINUX_SOURCE)
 prepare: $(LINUX_DIR)/.configured
        @mkdir -p $(LINUX_DIR) $(PACKAGE_DIR)
 
index 2f9117b..a31ddf1 100644 (file)
@@ -20,7 +20,7 @@ $(PKG_BUILD_DIR)/loader.gz: $(PKG_BUILD_DIR)/.prepared
        $(MAKE) -C $(PKG_BUILD_DIR) CC=$(TARGET_CC) \
                LD=$(TARGET_CROSS)ld CROSS_COMPILE=$(TARGET_CROSS)
 
-source
+download
 prepare: $(PKG_BUILD_DIR)/.prepared
 compile: $(PKG_BUILD_DIR)/loader.gz
 install:
index 29f9f3b..6cbbd94 100644 (file)
@@ -33,7 +33,7 @@ $(PKG_BUILD_DIR)/vmlinux.lzma: $(KDIR)/vmlinux.lzma
 $(KDIR)/loader.elf: $(PKG_BUILD_DIR)/lzma.elf
        $(CP) $< $@
 
-source
+download
 prepare: $(PKG_BUILD_DIR)/.prepared
 compile: $(KDIR)/loader.elf
 install:
index 9afda46..8682fc2 100644 (file)
@@ -7,8 +7,8 @@
 include $(TOPDIR)/rules.mk
 include $(INCLUDE_DIR)/target.mk
 
-source:
-       $(MAKE) -C $(BOARD)-$(KERNEL) source
+download:
+       $(MAKE) -C $(BOARD)-$(KERNEL) download
 
 prepare:
        rm -f $(TOPDIR)/.kernel.mk
index a766b50..d385722 100644 (file)
@@ -46,7 +46,7 @@ $(LINUX_DIR)/.patched: $(LINUX_DIR)/.unpacked
 # ATM firmware for the DSL modem
 ###############################################
 
-DOWNLOAD_SITE=http://openwrt.org/downloads/sources
+DOWNLOAD_SITE=http://openwrt.org/downloads/downloads
 # extracted from netgear DG834B V1.0.5 GPL release
 ATM_FIRMWARE_FILE=$(ATM_FIRMWARE_DIR).tar.gz
 ATM_FIRMWARE_MD5SUM=8bfcb31109796502d66b11baaeb2fba6
@@ -54,7 +54,7 @@ ATM_FIRMWARE_MD5SUM=8bfcb31109796502d66b11baaeb2fba6
 $(DL_DIR)/$(ATM_FIRMWARE_FILE):
        $(SCRIPT_DIR)/download.pl $(DL_DIR) $(ATM_FIRMWARE_FILE) $(ATM_FIRMWARE_MD5SUM) $(DOWNLOAD_SITE)
 
-source: $(DL_DIR)/$(ATM_FIRMWARE_FILE)
+download: $(DL_DIR)/$(ATM_FIRMWARE_FILE)
 $(LINUX_DIR)/.unpacked: $(DL_DIR)/$(ATM_FIRMWARE_FILE)
 $(LINUX_DIR)/.depend_done: $(LINUX_DIR)/.drivers-unpacked
 $(LINUX_DIR)/.modules_done: $(LINUX_DIR)/.drivers-unpacked
index 0552b0a..a841356 100644 (file)
@@ -38,7 +38,7 @@ $(BIN_DIR)/$(SDK_NAME).tar.bz2:
                tar cfj $@ $(SDK_NAME); \
        )
 
-source:
+download:
 prepare:
 compile: $(BIN_DIR)/$(SDK_NAME).tar.bz2
 install:
index 855f552..c7b9a04 100644 (file)
@@ -10,7 +10,7 @@ TARGETS := addpattern trx motorola-bin dgfirmware
 
 UTILS_BUILD_DIR:=$(BUILD_DIR)/target-utils
 
-source:
+download:
 prepare: $(UTILS_BUILD_DIR)
 compile: prepare $(patsubst %,$(UTILS_BUILD_DIR)/%,$(TARGETS)) FORCE
        mkdir -p $(STAGING_DIR)/bin
This page took 0.035206 seconds and 4 git commands to generate.