Cristi, note that this was the cause of the error message when I
tested your code too. The executed command is:

wget "" -P /home/stuge/co/kvm/sources 
http://kernel.org/pub/linux/kernel/v2.6//linux-2.6.22.2.tar.bz2

And of course wget can't download an empty string.

Makefile variables shouldn't have quotes. I can't commit to the
buildrom repo so the commiter could change this to := at will, and
I'd be fine with that too. :)


//Peter
buildrom: Fix ": Unsupported scheme." error message and a typo

Signed-off-by: Peter Stuge <[EMAIL PROTECTED]>

Index: Makefile
===================================================================
--- Makefile	(revision 217)
+++ Makefile	(working copy)
@@ -62,9 +62,9 @@
 
 # Pass -q to wget if the user doesn't want to see a download progressbar.
 ifeq ($(CONFIG_SHOW_DOWNLOAD_PROGRESSBAR),y)
-WGET_Q = ""
+WGET_Q=
 else
-WGET_Q = "-q"
+WGET_Q=-q
 endif
 
 DEPENDS-y=
Index: packages/kernel/norwich.mk
===================================================================
--- packages/kernel/norwich.mk	(revision 217)
+++ packages/kernel/norwich.mk	(working copy)
@@ -10,7 +10,7 @@
 
 $(SOURCE_DIR)/$(KERNEL_SOURCE):
 	@ mkdir -p $(SOURCE_DIR)
-	@ wget $(wGET_Q) -P $(SOURCE_DIR) $(KERNEL_URL)/$(KERNEL_SOURCE)
+	@ wget $(WGET_Q) -P $(SOURCE_DIR) $(KERNEL_URL)/$(KERNEL_SOURCE)
 
 include $(PACKAGE_DIR)/kernel/kernel.inc
 
--
coreboot mailing list
[email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to