瀏覽代碼

linux: fix copy of Busybox config to target directory

This patch fixes bug report #5204. The Busybox config was not copied from the
correct place.

Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Hans-Christian Egtvedt 17 年之前
父節點
當前提交
0fbec516fd
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      target/linux/Makefile.in.advanced

+ 1 - 1
target/linux/Makefile.in.advanced

@@ -428,7 +428,7 @@ $(TARGET_DIR)/boot/uclibc.config: $(UCLIBC_DIR)/.config
 
 
 $(TARGET_DIR)/boot/busybox.config: $(BUSYBOX_DIR)/.config
 $(TARGET_DIR)/boot/busybox.config: $(BUSYBOX_DIR)/.config
 	mkdir -p $(TARGET_DIR)/boot
 	mkdir -p $(TARGET_DIR)/boot
-	cp -dpf .config $(TARGET_DIR)/boot/busybox.config
+	cp -dpf $(BUSYBOX_DIR)/.config $(TARGET_DIR)/boot/busybox.config
 
 
 /tftpboot/$(LINUX26_KERNEL_NAME): $(LINUX26_KERNEL)
 /tftpboot/$(LINUX26_KERNEL_NAME): $(LINUX26_KERNEL)
 	-mkdir -p /tftpboot
 	-mkdir -p /tftpboot