On Sun, 2008-06-29 at 13:36 +0200, Rafael J. Wysocki wrote: > # make INSTALL_FW_PATH=/lib/firmware firmware_install > make -C /home/rafael/src/linux-next > O=/home/rafael/src/build/next/albercik/. firmware_install > make[3]: *** No rule to make target `firmware/acenic/tg1.bin', needed > by `/lib/firmware/acenic/tg1.bin'. Stop. > make[2]: *** [firmware_install] Error 2 > make[1]: *** [sub-make] Error 2 > make: *** [all] Error 2 Ah, sorry -- I haven't been testing firmware_install with O= builds very often, and I seem to have broken it. This should fix it: --- a/firmware/Makefile +++ b/firmware/Makefile @@ -69,7 +69,7 @@ fw-shipped-y := endif firmware-y := $(fw-external-y) $(fw-shipped-y) -firmware-dirs := $(sort $(patsubst %,$(objtree)/$(obj)/%/,$(dir $(firmware-y)))) +firmware-dirs := $(sort $(patsubst %,$(objtree)/$(obj)/%/,$(dir $(firmware-y) $(fw-shipped-)))) quiet_cmd_mkdir = MKDIR $(patsubst $(objtree)/%,%,$@) cmd_mkdir = mkdir -p $@ -- dwmw2 -- To unsubscribe from this list: send the line "unsubscribe kernel-testers" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html