kernel 2.6.24 creates a symlink to bzImage, which is copied inplace, symlink and all, this gives an incorrect symlink deref in binaries/uclibc/ and points to ../../x86/bzImage. Do not copy symlink in place, follow it. Patch by Nigel Kukard.
This commit is contained in:
parent
69ae3cec84
commit
c2fe2a53dd
@ -191,7 +191,7 @@ $(LINUX26_KERNEL): $(INITRAMFS_TARGET) $(BB_INITRAMFS_TARGET) \
|
||||
$(LINUX26_DIR)/.depend_done
|
||||
$(MAKE) $(LINUX26_MAKE_FLAGS) \
|
||||
-C $(LINUX26_DIR) $(LINUX26_FORMAT)
|
||||
cp -dpf $(LINUX26_DIR)/$(LINUX26_BINLOC) $(LINUX26_KERNEL)
|
||||
cp -pf $(LINUX26_DIR)/$(LINUX26_BINLOC) $(LINUX26_KERNEL)
|
||||
touch -c $@
|
||||
|
||||
$(TARGET_DIR)/lib/modules/$(LINUX26_VERSION)/modules.dep: $(LINUX26_DIR)/.configured
|
||||
|
Loading…
Reference in New Issue
Block a user