fix target.cfg files on dell latitudes
some latitudes still used the old style for variables in target.cfg, specifically arch="x86_64" - lbmk used to then check that on a big if/else and translate it to the correct target name for crossgcc, e.g. i386-elf, arm-eabi now it just puts the arch directly, in a new variable: xarch change arch="x86_64" to xarch="i386-elf" in these files. also remove a few obsolete variables. should build now. Signed-off-by: Leah Rowe <leah@libreboot.org>20240612_branch
parent
d923d31451
commit
a5c7cc1a0b
|
@ -1,6 +1,5 @@
|
||||||
tree="default"
|
tree="default"
|
||||||
romtype="normal"
|
xarch="i386-elf"
|
||||||
arch="x86_64"
|
|
||||||
payload_grub="n"
|
payload_grub="n"
|
||||||
payload_grub_withseabios="n"
|
payload_grub_withseabios="n"
|
||||||
payload_seabios="y"
|
payload_seabios="y"
|
||||||
|
@ -8,5 +7,4 @@ payload_memtest="y"
|
||||||
payload_seabios_withgrub="y"
|
payload_seabios_withgrub="y"
|
||||||
payload_seabios_grubonly="y"
|
payload_seabios_grubonly="y"
|
||||||
grub_scan_disk="ahci"
|
grub_scan_disk="ahci"
|
||||||
microcode_required="n"
|
|
||||||
status="unstable"
|
status="unstable"
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
tree="default"
|
tree="default"
|
||||||
romtype="normal"
|
xarch="i386-elf"
|
||||||
arch="x86_64"
|
|
||||||
payload_grub="n"
|
payload_grub="n"
|
||||||
payload_grub_withseabios="n"
|
payload_grub_withseabios="n"
|
||||||
payload_seabios="y"
|
payload_seabios="y"
|
||||||
|
@ -8,5 +7,4 @@ payload_memtest="y"
|
||||||
payload_seabios_withgrub="y"
|
payload_seabios_withgrub="y"
|
||||||
payload_seabios_grubonly="y"
|
payload_seabios_grubonly="y"
|
||||||
grub_scan_disk="ahci"
|
grub_scan_disk="ahci"
|
||||||
microcode_required="n"
|
|
||||||
status="unstable"
|
status="unstable"
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
tree="default"
|
tree="default"
|
||||||
romtype="normal"
|
xarch="i386-elf"
|
||||||
arch="x86_64"
|
|
||||||
payload_grub="n"
|
payload_grub="n"
|
||||||
payload_grub_withseabios="n"
|
payload_grub_withseabios="n"
|
||||||
payload_seabios="y"
|
payload_seabios="y"
|
||||||
|
@ -8,5 +7,4 @@ payload_memtest="y"
|
||||||
payload_seabios_withgrub="y"
|
payload_seabios_withgrub="y"
|
||||||
payload_seabios_grubonly="y"
|
payload_seabios_grubonly="y"
|
||||||
grub_scan_disk="ahci"
|
grub_scan_disk="ahci"
|
||||||
microcode_required="n"
|
|
||||||
status="unstable"
|
status="unstable"
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
tree="default"
|
tree="default"
|
||||||
romtype="normal"
|
xarch="i386-elf"
|
||||||
arch="x86_64"
|
|
||||||
payload_grub="n"
|
payload_grub="n"
|
||||||
payload_grub_withseabios="n"
|
payload_grub_withseabios="n"
|
||||||
payload_seabios="y"
|
payload_seabios="y"
|
||||||
|
@ -8,5 +7,4 @@ payload_memtest="y"
|
||||||
payload_seabios_withgrub="y"
|
payload_seabios_withgrub="y"
|
||||||
payload_seabios_grubonly="y"
|
payload_seabios_grubonly="y"
|
||||||
grub_scan_disk="ahci"
|
grub_scan_disk="ahci"
|
||||||
microcode_required="n"
|
|
||||||
status="unstable"
|
status="unstable"
|
||||||
|
|
Loading…
Reference in New Issue