On Thu, Oct 1, 2009 at 11:29 AM, Uwe Hermann <[email protected]> wrote:
> +ifeq ($(CONFIG_CPU_AMD_GX1),y) > +crt0-y += ../../../../src/cpu/amd/model_gx1/cpu_setup.inc > +crt0-y += ../../../../src/cpu/amd/model_gx1/gx_setup.inc > +crt0-y += auto.inc let's stick with the standard way of doing this. It makes any automated tools easier. crt0-$(CONFIG_CPU_AMD_GX1) += ./../../../src/cpu/amd/model_gx1/cpu_setup.inc crt0-$(CONFIG_CPU_AMD_GX1) +=../../../../src/cpu/amd/model_gx1/gx_setup.inc Pretty much all the crt0-y in that makefile should actually have conditional variables if we really want to make it that general. and so on. thanks ron -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

