Patchwork build service results for r4765

login
register
about
Submitter Libra Li
Date 2009-10-14 03:03:46
Message ID <df21912a0910132003s6f1051abq50ab49005dde34e9@mail.gmail.com>
Download mbox | patch
Permalink /patch/404/
State Accepted
Commit r4774
Headers show

Comments

Libra Li - 2009-10-14 03:03:46
Hi,

    I found loss target tim5690 in the "coreboot-v2/targets/technexion/".
    Thanks.

    Signed-off-by: Libra Li <libra.li@technexion.com>


2009/10/14 coreboot information <info@coresystems.de>

> Dear coreboot readers!
>
> This is the automatic build system of coreboot.
>
> The developer "myles" checked in revision 4765 to
> the coreboot repository. This caused the following
> changes:
>
> Change Log:
> This patch support for the Technexion Tim-5690 mainboard.
> It's an embedded AMD RS690/SB600 mainboard.
>
> http://www.technexion.com/index.php/tim-5690
>
> Myles added Kconfig support.
>
> Signed-off-by: Libra Li <libra.li@technexion.com>
> Signed-off-by: Myles Watson <mylesgw@gmail.com>
> Acked-by: Stefan Reinauer <stepan@coresystems.de>
>
>
> Build Log:
> Configuration of kontron:kt690 is still broken
> See the error log at
> http://qa.coreboot.org/log_buildbrd.php?revision=4765&device=kt690&vendor=kontron&num=1
>
>
> If something broke during this checkin please be a pain
> in myles's neck until the issue is fixed.
>
> If this issue is not fixed within 24h the revision should
> be backed out.
>
>   Best regards,
>     coreboot automatic build system
>
>
>
> --
> coreboot mailing list: coreboot@coreboot.org
> http://www.coreboot.org/mailman/listinfo/coreboot
>
Myles Watson - 2009-10-14 03:20:24
On Tue, Oct 13, 2009 at 9:03 PM, Libra Li <librali1977@gmail.com> wrote:
> Hi,
>
>     I found loss target tim5690 in the "coreboot-v2/targets/technexion/".
>     Thanks.
>
>     Signed-off-by: Libra Li <libra.li@technexion.com>
Rev 4774.

Thanks,
Myles

Patch

Index: targets/technexion/tim5690/Config-abuild.lb
===================================================================
--- targets/technexion/tim5690/Config-abuild.lb	(revision 0)
+++ targets/technexion/tim5690/Config-abuild.lb	(revision 0)
@@ -0,0 +1,26 @@ 
+# This will make a target directory of ./VENDOR_MAINBOARD
+
+target VENDOR_MAINBOARD
+mainboard VENDOR/MAINBOARD
+
+option CC="CROSSCC"
+option CONFIG_CROSS_COMPILE="CROSS_PREFIX"
+option HOSTCC="CROSS_HOSTCC"
+
+__COMPRESSION__
+__LOGLEVEL__
+
+romimage "normal"
+	option CONFIG_USE_FALLBACK_IMAGE=0
+	option CONFIG_ROM_IMAGE_SIZE=0x20000
+	option COREBOOT_EXTRA_VERSION=".0-normal"
+	payload __PAYLOAD__
+end
+
+romimage "fallback" 
+	option CONFIG_USE_FALLBACK_IMAGE=1
+	option CONFIG_ROM_IMAGE_SIZE=0x20000
+	option COREBOOT_EXTRA_VERSION=".0-fallback"
+	payload __PAYLOAD__
+end
+buildrom ./coreboot.rom CONFIG_ROM_SIZE "normal" "fallback"
Index: targets/technexion/tim5690/Config.lb
===================================================================
--- targets/technexion/tim5690/Config.lb	(revision 0)
+++ targets/technexion/tim5690/Config.lb	(revision 0)
@@ -0,0 +1,31 @@ 
+# This will make a target directory of ./tim5690
+
+target tim5690
+mainboard technexion/tim5690
+
+option CONFIG_ROM_SIZE = (1024*512)
+#option CONFIG_ROM_SIZE = (1024*1024*1)
+#option CONFIG_ROM_SIZE = (1024*1024*2)
+#option CONFIG_ROM_SIZE = (1024*1024*4)
+
+option CONFIG_COMPRESSED_PAYLOAD_LZMA=1
+
+
+romimage "normal"
+	option CONFIG_USE_FALLBACK_IMAGE=0
+	option CONFIG_ROM_IMAGE_SIZE=0x20000
+	option CONFIG_XIP_ROM_SIZE=0x20000
+
+	payload ../payload.elf
+end
+
+romimage "fallback" 
+	option CONFIG_USE_FALLBACK_IMAGE=1
+	option CONFIG_ROM_IMAGE_SIZE=0x20000
+	option CONFIG_XIP_ROM_SIZE=0x20000
+
+	payload ../payload.elf
+end
+
+buildrom ./coreboot.rom CONFIG_ROM_SIZE "fallback" 
+