summaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-08-27 15:02:11 +0100
committerLeah Rowe <leah@libreboot.org>2023-08-27 15:02:11 +0100
commitbc0fb51d222dd1838894c5567965749710f42723 (patch)
treec83f8414eb176a8df4f8a42ab6ac4a0a591040cf /resources
parent9457d6be52e5f409566dabc10dd5435102b2e760 (diff)
x86 desktops: only enable seabios_withgrub
and only where grub was already enabled; on boards that did not enable grub, grub is still disabled on desktops, it's possible that the user may insert a graphics card. if their first payload was grub, it won't work because lbmk doesn't configure coreboot itself to execute vga roms at present i found when testing t1650 (dell) that if a vgarom is loaded from seabios (from a graphics card), the grub payload still works; if booting in corebootfb mode, text mode is still used when booting with the card to decrease the probability of bricks with any given set of users, make seabios the only payload that starts first, but make grub available in the esc menu on seabios it's possible to add a bootorder file and disable the seabios menu, if you only want a grub payload accessible Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'resources')
-rw-r--r--resources/coreboot/d510mo_16mb/target.cfg3
-rw-r--r--resources/coreboot/g43t-am3/target.cfg2
-rw-r--r--resources/coreboot/g43t-am3_16mb/target.cfg2
-rw-r--r--resources/coreboot/ga-g41m-es2l/target.cfg2
-rw-r--r--resources/coreboot/hp8200sff_4mb/target.cfg3
-rw-r--r--resources/coreboot/hp8200sff_8mb/target.cfg3
-rw-r--r--resources/coreboot/hp8300usdt_16mb/target.cfg3
-rw-r--r--resources/coreboot/kfsn4-dre_1mb/target.cfg2
-rw-r--r--resources/coreboot/kfsn4-dre_2mb/target.cfg3
-rw-r--r--resources/coreboot/kgpe-d16-rdimm_16mb/target.cfg3
-rw-r--r--resources/coreboot/kgpe-d16-rdimm_2mb/target.cfg3
-rw-r--r--resources/coreboot/kgpe-d16-udimm_16mb/target.cfg3
-rw-r--r--resources/coreboot/kgpe-d16-udimm_2mb/target.cfg3
13 files changed, 9 insertions, 26 deletions
diff --git a/resources/coreboot/d510mo_16mb/target.cfg b/resources/coreboot/d510mo_16mb/target.cfg
index dec7489a..838b2a05 100644
--- a/resources/coreboot/d510mo_16mb/target.cfg
+++ b/resources/coreboot/d510mo_16mb/target.cfg
@@ -1,9 +1,8 @@
tree="default"
romtype="normal"
arch="x86_64"
-payload_grub="y"
-payload_grub_withseabios="y"
payload_seabios="y"
+payload_seabios_withgrub="y"
payload_memtest="y"
microcode_required="n"
blobs_required="n"
diff --git a/resources/coreboot/g43t-am3/target.cfg b/resources/coreboot/g43t-am3/target.cfg
index c87b3b2e..9835ea10 100644
--- a/resources/coreboot/g43t-am3/target.cfg
+++ b/resources/coreboot/g43t-am3/target.cfg
@@ -1,8 +1,6 @@
tree="default"
romtype="normal"
arch="x86_64"
-payload_grub="n"
-payload_grub_withseabios="n"
payload_seabios="y"
microcode_required="n"
blobs_required="n"
diff --git a/resources/coreboot/g43t-am3_16mb/target.cfg b/resources/coreboot/g43t-am3_16mb/target.cfg
index c51f117b..249d9e68 100644
--- a/resources/coreboot/g43t-am3_16mb/target.cfg
+++ b/resources/coreboot/g43t-am3_16mb/target.cfg
@@ -1,8 +1,6 @@
tree="default"
romtype="normal"
arch="x86_64"
-payload_grub="n"
-payload_grub_withseabios="n"
payload_seabios="y"
payload_memtest="n"
microcode_required="n"
diff --git a/resources/coreboot/ga-g41m-es2l/target.cfg b/resources/coreboot/ga-g41m-es2l/target.cfg
index 81f11923..2eaad4a3 100644
--- a/resources/coreboot/ga-g41m-es2l/target.cfg
+++ b/resources/coreboot/ga-g41m-es2l/target.cfg
@@ -1,8 +1,6 @@
tree="default"
romtype="normal"
arch="x86_64"
-payload_grub="n"
-payload_grub_withseabios="n"
payload_seabios="y"
grub_scan_disk="ata"
microcode_required="n"
diff --git a/resources/coreboot/hp8200sff_4mb/target.cfg b/resources/coreboot/hp8200sff_4mb/target.cfg
index fb07b8fe..7b7bb131 100644
--- a/resources/coreboot/hp8200sff_4mb/target.cfg
+++ b/resources/coreboot/hp8200sff_4mb/target.cfg
@@ -1,9 +1,8 @@
tree="default"
romtype="normal"
arch="x86_64"
-payload_grub="y"
-payload_grub_withseabios="y"
payload_seabios="y"
+payload_seabios_withgrub="y"
payload_memtest="y"
grub_scan_disk="ahci"
microcode_required="n"
diff --git a/resources/coreboot/hp8200sff_8mb/target.cfg b/resources/coreboot/hp8200sff_8mb/target.cfg
index fb07b8fe..7b7bb131 100644
--- a/resources/coreboot/hp8200sff_8mb/target.cfg
+++ b/resources/coreboot/hp8200sff_8mb/target.cfg
@@ -1,9 +1,8 @@
tree="default"
romtype="normal"
arch="x86_64"
-payload_grub="y"
-payload_grub_withseabios="y"
payload_seabios="y"
+payload_seabios_withgrub="y"
payload_memtest="y"
grub_scan_disk="ahci"
microcode_required="n"
diff --git a/resources/coreboot/hp8300usdt_16mb/target.cfg b/resources/coreboot/hp8300usdt_16mb/target.cfg
index fb07b8fe..7b7bb131 100644
--- a/resources/coreboot/hp8300usdt_16mb/target.cfg
+++ b/resources/coreboot/hp8300usdt_16mb/target.cfg
@@ -1,9 +1,8 @@
tree="default"
romtype="normal"
arch="x86_64"
-payload_grub="y"
-payload_grub_withseabios="y"
payload_seabios="y"
+payload_seabios_withgrub="y"
payload_memtest="y"
grub_scan_disk="ahci"
microcode_required="n"
diff --git a/resources/coreboot/kfsn4-dre_1mb/target.cfg b/resources/coreboot/kfsn4-dre_1mb/target.cfg
index c7bf7741..e7863a3e 100644
--- a/resources/coreboot/kfsn4-dre_1mb/target.cfg
+++ b/resources/coreboot/kfsn4-dre_1mb/target.cfg
@@ -1,8 +1,6 @@
tree="fam15h_udimm"
romtype="normal"
arch="x86_64"
-payload_grub="n"
-payload_grub_withseabios="n"
payload_seabios="y"
payload_memtest="y"
crossgcc_ada="n"
diff --git a/resources/coreboot/kfsn4-dre_2mb/target.cfg b/resources/coreboot/kfsn4-dre_2mb/target.cfg
index c7bf7741..e9d7512a 100644
--- a/resources/coreboot/kfsn4-dre_2mb/target.cfg
+++ b/resources/coreboot/kfsn4-dre_2mb/target.cfg
@@ -1,9 +1,8 @@
tree="fam15h_udimm"
romtype="normal"
arch="x86_64"
-payload_grub="n"
-payload_grub_withseabios="n"
payload_seabios="y"
+payload_seabios_withgrub="y"
payload_memtest="y"
crossgcc_ada="n"
microcode_required="n"
diff --git a/resources/coreboot/kgpe-d16-rdimm_16mb/target.cfg b/resources/coreboot/kgpe-d16-rdimm_16mb/target.cfg
index 0cbae6f0..5fe0f9e6 100644
--- a/resources/coreboot/kgpe-d16-rdimm_16mb/target.cfg
+++ b/resources/coreboot/kgpe-d16-rdimm_16mb/target.cfg
@@ -1,9 +1,8 @@
tree="fam15h_rdimm"
romtype="d8d16sas"
arch="x86_64"
-payload_grub="y"
-payload_grub_withseabios="y"
payload_seabios="y"
+payload_seabios_withgrub="y"
payload_memtest="y"
crossgcc_ada="n"
microcode_required="n"
diff --git a/resources/coreboot/kgpe-d16-rdimm_2mb/target.cfg b/resources/coreboot/kgpe-d16-rdimm_2mb/target.cfg
index 0cbae6f0..5fe0f9e6 100644
--- a/resources/coreboot/kgpe-d16-rdimm_2mb/target.cfg
+++ b/resources/coreboot/kgpe-d16-rdimm_2mb/target.cfg
@@ -1,9 +1,8 @@
tree="fam15h_rdimm"
romtype="d8d16sas"
arch="x86_64"
-payload_grub="y"
-payload_grub_withseabios="y"
payload_seabios="y"
+payload_seabios_withgrub="y"
payload_memtest="y"
crossgcc_ada="n"
microcode_required="n"
diff --git a/resources/coreboot/kgpe-d16-udimm_16mb/target.cfg b/resources/coreboot/kgpe-d16-udimm_16mb/target.cfg
index 3600d6cb..b4215683 100644
--- a/resources/coreboot/kgpe-d16-udimm_16mb/target.cfg
+++ b/resources/coreboot/kgpe-d16-udimm_16mb/target.cfg
@@ -1,9 +1,8 @@
tree="fam15h_udimm"
romtype="d8d16sas"
arch="x86_64"
-payload_grub="y"
-payload_grub_withseabios="y"
payload_seabios="y"
+payload_seabios_withgrub="y"
payload_memtest="y"
crossgcc_ada="n"
microcode_required="n"
diff --git a/resources/coreboot/kgpe-d16-udimm_2mb/target.cfg b/resources/coreboot/kgpe-d16-udimm_2mb/target.cfg
index 3600d6cb..b4215683 100644
--- a/resources/coreboot/kgpe-d16-udimm_2mb/target.cfg
+++ b/resources/coreboot/kgpe-d16-udimm_2mb/target.cfg
@@ -1,9 +1,8 @@
tree="fam15h_udimm"
romtype="d8d16sas"
arch="x86_64"
-payload_grub="y"
-payload_grub_withseabios="y"
payload_seabios="y"
+payload_seabios_withgrub="y"
payload_memtest="y"
crossgcc_ada="n"
microcode_required="n"