Author: stepan
Date: Fri Mar 26 12:47:13 2010
New Revision: 5302
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5302
Log:
Update libpayload default configuration so a make oldconfig
on that configuration does not ask questions.
Signed-off-by: Stefan Reinauer <stepan(a)coresystems.de>
Acked-by: Stefan Reinauer <stepan(a)coresystems.de>
Modified:
trunk/payloads/libpayload/configs/defconfig
Modified: trunk/payloads/libpayload/configs/defconfig
==============================================================================
--- trunk/payloads/libpayload/configs/defconfig Fri Mar 26 11:33:36 2010 (r5301)
+++ trunk/payloads/libpayload/configs/defconfig Fri Mar 26 12:47:13 2010 (r5302)
@@ -1,10 +1,17 @@
#
# Automatically generated make config: don't edit
# libpayload version: 0.2.0
-# Thu May 21 12:01:39 2009
+# Fri Mar 26 12:45:27 2010
#
#
+# Generic Options
+#
+# CONFIG_EXPERIMENTAL is not set
+# CONFIG_OBSOLETE is not set
+# CONFIG_DEVELOPER is not set
+
+#
# Architecture Options
#
CONFIG_TARGET_I386=y
@@ -16,6 +23,7 @@
#
CONFIG_LIBC=y
CONFIG_TINYCURSES=y
+# CONFIG_CBFS is not set
#
# Console Options
@@ -27,6 +35,7 @@
CONFIG_VIDEO_CONSOLE=y
CONFIG_VGA_VIDEO_CONSOLE=y
# CONFIG_GEODELX_VIDEO_CONSOLE is not set
+CONFIG_COREBOOT_VIDEO_CONSOLE=y
CONFIG_PC_KEYBOARD=y
CONFIG_PC_KEYBOARD_LAYOUT_US=y
# CONFIG_PC_KEYBOARD_LAYOUT_DE is not set
@@ -38,4 +47,10 @@
CONFIG_NVRAM=y
# CONFIG_RTC_PORT_EXTENDED_VIA is not set
CONFIG_SPEAKER=y
-# CONFIG_USB is not set
+CONFIG_USB=y
+CONFIG_USB_UHCI=y
+# CONFIG_USB_OHCI is not set
+# CONFIG_USB_EHCI is not set
+CONFIG_USB_HID=y
+CONFIG_USB_HUB=y
+CONFIG_USB_MSC=y
Author: stepan
Date: Fri Mar 26 12:42:06 2010
New Revision: 109
URL: http://tracker.coreboot.org/trac/filo/changeset/109
Log:
drop svn:externals of libpayload from filo.
Signed-off-by: Stefan Reinauer <stepan(a)coresystems.de>
Modified:
trunk/filo/ (props changed)
trunk/filo/README
Modified: trunk/filo/README
==============================================================================
--- trunk/filo/README Mon Mar 8 14:09:45 2010 (r108)
+++ trunk/filo/README Fri Mar 26 12:42:06 2010 (r109)
@@ -39,13 +39,13 @@
INSTALL
- First, you need to compile libpayload (included via svn:externals in FILO):
+ First, you need to compile libpayload (included in coreboot):
- $ cd libpayload
+ $ cd ../coreboot/payloads/libpayload
$ make defconfig
$ make
- $ make DESTDIR=../build install
- $ cd ..
+ $ make DESTDIR=../../../filo/build install
+ $ cd ../../../filo
Configure FILO using the Kconfig interface:
Author: oxygene
Date: Fri Mar 26 11:33:36 2010
New Revision: 5301
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5301
Log:
Make sconfig only complain about real conflicts.
Signed-off-by: Patrick Georgi <patrick.georgi(a)coresystems.de>
Acked-by: Stefan Reinauer <stepan(a)coresystems.de>
Modified:
trunk/util/sconfig/config.g
Modified: trunk/util/sconfig/config.g
==============================================================================
--- trunk/util/sconfig/config.g Fri Mar 26 02:43:30 2010 (r5300)
+++ trunk/util/sconfig/config.g Fri Mar 26 11:33:36 2010 (r5301)
@@ -602,8 +602,8 @@
def setdict(dict, name, value):
debug.info(debug.dict, "setdict sets %s to %s" % (name, value))
- if name in dict.keys():
- print "Duplicate in dict: %s" % name
+ if name in dict.keys() and not dict[name] == value:
+ print "Collision in dict: %s is %s, shall be set to %s" % (name, dict[name], value)
dict[name] = value