From: Hans-Christian Egtvedt Date: Fri, 3 Oct 2008 07:24:34 +0000 (-0000) Subject: linux: fix copy of Busybox config to target directory X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0fbec516fd62e14021e5e01dba031d66e00d5e3e;p=buildroot.git 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 --- diff --git a/target/linux/Makefile.in.advanced b/target/linux/Makefile.in.advanced index 402830c7af..cfdba95250 100644 --- a/target/linux/Makefile.in.advanced +++ b/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 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) -mkdir -p /tftpboot