diff options
author | Leah Rowe <leah@libreboot.org> | 2023-12-27 15:18:21 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-12-27 16:07:32 +0000 |
commit | eff9130b7ab9ce79338ae6b1ec5c2f18bad5b5ec (patch) | |
tree | cbbb0178e265bac6864a5bbaaa10fd52f4606d5f /config/coreboot/kcma-d8-udimm_16mb | |
parent | 6752780f46e3747ead538a7a5b62f63fe86ab505 (diff) |
update/trees: further simplify crossgcc handling
arch no longer needs to be set, on multi-tree projects,
and it has been renamed to xarch
the new behaviour is: if xarch is set, treat it as a
list of crossgcc targets and go through the list. set
the first one as the target, for what lbmk builds, but
build all of the defined crossgccc targets
crossgcc_ada is now xlang, and defines which languages
to build, rather than whether to build gcc-gnat
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'config/coreboot/kcma-d8-udimm_16mb')
-rw-r--r-- | config/coreboot/kcma-d8-udimm_16mb/target.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/coreboot/kcma-d8-udimm_16mb/target.cfg b/config/coreboot/kcma-d8-udimm_16mb/target.cfg index 869798fa..a8a4a5fc 100644 --- a/config/coreboot/kcma-d8-udimm_16mb/target.cfg +++ b/config/coreboot/kcma-d8-udimm_16mb/target.cfg @@ -1,7 +1,7 @@ tree="fam15h_udimm" -arch="i386-elf" +xarch="i386-elf" payload_grub="y" payload_grub_withseabios="y" payload_seabios="y" payload_memtest="y" -crossgcc_ada="n" +xlang="c" |