Changeset 918291b in freewrt for target/linux


Ignore:
Timestamp:
Jul 21, 2006, 2:27:26 AM (19 years ago)
Author:
Thorsten Glaser <tg@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
8e39b7e
Parents:
b266f30
Message:

remove more dead code, and fix my fix to gcom's Makefile...
of course you set WRKSRC not WRKBUILD

git-svn-id: svn://www.freewrt.org/trunk/freewrt@309 afb5a338-a214-0410-bd46-81f09a774fd1

Location:
target/linux
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • target/linux/ar7-2.4/Makefile

    rb266f30 r918291b  
    5656$(LINUX_DIR)/.drivers-unpacked: $(LINUX_DIR)/.unpacked
    5757        -mkdir -p $(BUILD_DIR)
    58         zcat $(DL_DIR)/$(ATM_FIRMWARE_FILE) | (cd $(BUILD_DIR); $(TAR_EXTRACT) )
     58        cd $(BUILD_DIR); tar xzf $(DL_DIR)/$(ATM_FIRMWARE_FILE)
    5959        touch $@
    6060
  • target/linux/brcm-2.4/Makefile

    rb266f30 r918291b  
    5151$(LINUX_DIR)/.drivers-unpacked: $(LINUX_DIR)/.unpacked
    5252        -mkdir -p $(BUILD_DIR)
    53         zcat $(DL_DIR)/$(LINUX_BINARY_WL_DRIVER) | (cd $(BUILD_DIR); $(TAR_EXTRACT) )
     53        cd ${BUILD_DIR}; tar xzf $(DL_DIR)/$(LINUX_BINARY_WL_DRIVER)
    5454        # copy binary wlan driver
    5555        mkdir -p $(LINUX_DIR)/drivers/net/wl
  • target/linux/kernel.mk

    rb266f30 r918291b  
    1818$(LINUX_DIR)/.unpacked: $(DL_DIR)/$(LINUX_SOURCE)
    1919        -mkdir -p $(LINUX_BUILD_DIR)
    20         bzcat $(DL_DIR)/$(LINUX_SOURCE) | (cd $(LINUX_BUILD_DIR); $(TAR_EXTRACT) )
     20        bzcat $(DL_DIR)/$(LINUX_SOURCE) | (cd $(LINUX_BUILD_DIR); tar xf - )
    2121        rm -f $(BUILD_DIR)/linux
    2222        ln -s $(LINUX_BUILD_DIR)/linux-$(LINUX_VERSION) $(BUILD_DIR)/linux
Note: See TracChangeset for help on using the changeset viewer.