-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Hello,
Thanks to Patrick we have now support for the tiny bootblock for Asus M2V-MX SE which has K8 CAR. It was pretty straightforward!
Signed-off-by: Rudolf Marek r.marek@assembler.cz
Thanks, Rudolf
On 1/4/10 11:23 PM, Rudolf Marek wrote:
Hello,
Thanks to Patrick we have now support for the tiny bootblock for Asus M2V-MX SE which has K8 CAR. It was pretty straightforward!
Signed-off-by: Rudolf Marek r.marek@assembler.cz
Acked-by: Stefan Reinauer stepan@coresystems.de
Rudolf Marek wrote:
+++ src/arch/i386/Makefile.tinybootblock.inc (working copy) @@ -24,12 +24,20 @@ bootblock_lds += $(src)/cpu/x86/16bit/entry16.lds bootblock_lds += $(src)/cpu/x86/16bit/reset16.lds bootblock_lds += $(src)/arch/i386/lib/id.lds +ifeq ($(CONFIG_SOUTHBRIDGE_VIA_K8T890),y) +bootblock_lds += $(src)/southbridge/via/k8t890/romstrap.lds +endif
..
+ifeq ($(CONFIG_SOUTHBRIDGE_VIA_K8T890),y) +bootblock_inc += $(src)/southbridge/via/k8t890/romstrap.inc +endif
Could these hunks go into a Makefile under southbridge/via/k8t890/ and become unconditional?
Lovely!
Acked-by: Peter Stuge peter@stuge.se
Am 05.01.2010 04:05, schrieb Peter Stuge:
Could these hunks go into a Makefile under southbridge/via/k8t890/ and become unconditional?
That's the plan - we just don't have the infrastructure for it yet.
Patrick