diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2012-11-15 14:53:02 +0100 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2012-11-30 21:24:57 +0100 |
commit | 7f934f5ee00978634c72740c2d1e997f2ac72e7f (patch) | |
tree | 7920e909a5afcb25bf756cce6161624c791bde4a | |
parent | 8ff97b2973329ee7e3b50471a10f63bbbe13b0ee (diff) |
build system: Treat cmos.default as text file
It's a more easily maintainable format than a 128 byte binary blob
Change-Id: Ic9b9f53cd025b5f89a21971930fabf6592f95d67
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/1867
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
-rw-r--r-- | src/drivers/pc80/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/pc80/Makefile.inc b/src/drivers/pc80/Makefile.inc index 0c1a1f016a..23e986a515 100644 --- a/src/drivers/pc80/Makefile.inc +++ b/src/drivers/pc80/Makefile.inc @@ -10,7 +10,7 @@ romstage-$(CONFIG_USE_OPTION_TABLE) += mc146818rtc_early.c subdirs-y += vga cbfs-files-$(CONFIG_HAVE_CMOS_DEFAULT) += cmos.default -cmos.default-file = $(CONFIG_CMOS_DEFAULT_FILE) +cmos.default-file = $(CONFIG_CMOS_DEFAULT_FILE):nvramtool cmos.default-type = 0xaa smm-y += mc146818rtc.c |