2
1
Fork 0
mirror of https://git.savannah.gnu.org/git/gnuboot.git synced 2025-01-13 02:46:48 +01:00
Commit graph

754 commits

Author SHA1 Message Date
Jordán (isf)
936024ca3a
website: docs: install: index: add Spanish translation.
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
GNUtoo: commit message, whitespace fixes.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-28 13:53:26 +01:00
Jordán (isf)
92de196642
website: docs: index: add Spanish translation.
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
GNUtoo: commit message, small whitespace fixes, fixed 1 typo with a markdown link.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 20:19:29 +01:00
1f07a190ba
website: status: 0.1 RC4: mark Vikings D16 as tested
I personnally tested this board with 0.1-rc4 and verified it worked.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
GNUtoo: rebased, updated status.es.md.
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-27 20:08:56 +01:00
a9677c5ed4
website: status: RC4: mark Asus D16, Lenovo R400 and T500 as tested
Marking these computers as tested since these images are reported as working:
- 0.1-rc4-grub_t500_16mb_corebootfb_usqwerty
- 0.1-rc4-grub_r400_4mb_corebootfb_usqwerty
- 0.1-rc4-grub_kgpe-d16-rdimm_16mb_txtmode_usqwerty

Reported-by: DiffieHellman <DiffieHellman@endianness.com>
GNUtoo: rebased, updated  website/pages/status.es.md, added RC4 in the summary.
Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-27 20:08:19 +01:00
d4e345bb2c
website: global.css: fix titles top and down margins
Without this fix, if there is a table and a heading right after it,
the heading will be stuck to the bottom of the table.

This is for instance visible in "GNU Boot 0.1 RC3 status" in
website/site/software/gnuboot/web/status.html where the "Stability:"
h2 is stuck to the bottom of the GNU Boot 0.1 RC3 status table.

This commit corrects this by using simple margins.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
GNUtoo: improved commit message.
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-27 20:07:07 +01:00
d82ac2a6dd
website: status: 0.1 RC5: set KGPE-D16 with GRUB and ECC RAM as tested.
Reported-by: DiffieHellman on #gnuboot in Libera.Chat
Link: https://savannah.gnu.org/bugs/index.php?66578
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 20:05:32 +01:00
4c46963c3d
website: status: RC4/RC5: cosmetics: align cell text top-left.
When adding text to the row name, it sometimes increases the number of
lines a row takes, and it is easier to deal with this increase if the
cell content is aligned on the top-left.

The Spanish translation is already correctly aligned.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 20:04:28 +01:00
6ac418d2e6
website: status: KCMA-D8: split status in ECC/non-ECC.
There is currently different images for use with ECC or non-ECC RAM:
the rdimm images are for use with ECC memory and the udimm are for use
with non-ECC memory.

Thanks a lot to isf on #gnuboot on libera chat for the correct Spanish
translation of non-ECC (before isf's fix, I added a space instead of a
hyphen because Non-binary gender is translated Género no binario
according to Spanish and English Wikipedia).

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 20:04:02 +01:00
fdf6f9167b
website: status: KGPE-D16: split status in ECC/non-ECC.
There is currently different images for use with ECC or non-ECC RAM:
the rdimm images are for use with ECC memory and the udimm are for use
with non-ECC memory.

Thanks a lot to isf on #gnuboot on libera chat for the correct Spanish
translation of non-ECC (before isf's fix, I added a space instead of a
hyphen because Non-binary gender is translated Género no binario
according to Spanish and English Wikipedia).

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
neox: fixed typo/duplication
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 20:02:51 +01:00
423cd956dc
release: tests: make it pass shellcheck.
Without this fix, running shellcheck -x on
resources/packages/release/test shows the following error:
    In resources/packages/release/test line 200:
    missing_in_release_files=$(expr $missing_in_release_files + 1)
                                       ^--^ SC2003 (style): expr is antiquated.
    Consider rewriting this using $((..)), ${} or [[ ]].
                                            ^-----------------------^ SC2086
    (info): Double quote to prevent globbing and word splitting.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 19:57:02 +01:00
70064b6710
release: tests: whitespace fixes.
Tabs were mixed with spaces. This removes the tabs.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 19:56:18 +01:00
a7a5f55890
release: tests: add debug images to the list of expected files.
Without that fix, make release fails with the following error:
    [ !! ] release/roms-dbg/gnuboot-<version>_debug_x200_8mb.tar.xz
           missing in ${release_files}
    [ !! ] release/roms-dbg/gnuboot-<version>_debug_t400_8mb.tar.xz
           missing in ${release_files}
    [ !! ] release/roms-dbg/gnuboot-<version>_debug_kgpe-d16-rdimm_2mb.tar.xz
           missing in ${release_files}
    [ !! ] release/roms-dbg/gnuboot-<version>_debug_qemu-pc_2mb.tar.xz
           missing in ${release_files}
with <version> being the GNU Boot version being built.

Also note that this was a known issue when it was introduced in the
commit b4a5a47499 ("packages: roms:
release: include debug images in the release") and I was aware of it
during the review.

The issue was not fixed at the time because we had planned a 100% free
software and/or FSDG install party where we installed GNU Boot.

And for that install party I wanted to make sure people were using a
tagged release that had the commit
860b00bf1e ("ressources/grub, website:
add LVM2 support (fix bug #65663 "No support for LVM2").").

This commit was supposed to support some configurations where there is
no /boot and the rootfs is on some LVM2 partition (but in reality this
commit contained issues and so this got fixed later on).

Since we needed to make a release of GNU Boot just before the install
party and to allow time to test the images as well (especially because
this is done by volunteers), I pushed for cutting every corner
possible to make sure that the images were released in time and to
allow time for testing. And so I argued for not fixing the tests for
the images.

At the end of the day the images were released in time but we had 0
time for doing tests (they were done later on).

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 19:55:27 +01:00
dead26bddd
website: status: KFSN4-DRE: mention missing GRUB images.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Bug-report: https://savannah.gnu.org/bugs/?66608
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 19:48:12 +01:00
e52378c533
website: status: D945GCLF/D945GCLF2D: mention missing GRUB images.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Bug-report: https://savannah.gnu.org/bugs/?66607
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 19:45:45 +01:00
9b972fef11
website: status: GA-G41M-ES2L: mention missing high resolution graphics images.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Bug-report: https://savannah.gnu.org/bugs/?66606
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 19:42:26 +01:00
b89b13a0d4
website: status: G43T-AM3: mention missing high resolution graphics images.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Bug-report: https://savannah.gnu.org/bugs/?66605
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 19:41:35 +01:00
63603f3820
website: status: D945GCLF/D945GCLF2D: mention missing high resolution graphics images.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Bug-report: https://savannah.gnu.org/bugs/?66604
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 17:16:59 +01:00
9f0ebda4a6
website: status: D510-MO: mention missing high resolution graphics images.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Bur-report: https://savannah.gnu.org/bugs/?66602
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 17:09:24 +01:00
85588caf20
website: status: KGPE-D16: mention missing high resolution graphics images.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Bug-report: https://savannah.gnu.org/bugs/?66601
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 17:09:10 +01:00
cd944b1f49
website: status: KFSN4-DRE: mention missing high resolution graphics images.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Bug-report: https://savannah.gnu.org/bugs/?66601
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 17:08:45 +01:00
599ae8bbf5
website: status: KCMA-D8: mention missing high resolution graphics images.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Bug-report: https://savannah.gnu.org/bugs/?66601
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 17:08:02 +01:00
1941dda4e8
website: status: tables: workaround lack of colspan.
When using ./configure --disable-guix, and a recent distribution (like
Parabola and Guix but not Trisquel 11 (aramo)), we can see cells
spanning multiple columns.

Once the website is built (with make build), we can easily test for
that with grep:
    $ grep colspan ./untitled/www/lbwww/site/status.html
    <td colspan="4">Can’t install due to missing images</td>
    <td colspan="4">Fail: #66487</td>
    <td colspan="4">Untested | Untested | Untested | Untested</td>
    <td colspan="4">Can’t install due to missing images</td>
    <td colspan="4">Fail: #66463, #66487</td>
    <td colspan="4">Untested | Untested | Fail: #66487 | Fail: #66487</td>
    <td colspan="3">Can’t install due to missing images</td>
    <td colspan="3">Can’t install due to missing images</td>
    <td colspan="3">Can’t install due to missing images</td>

But with ./configure without --disable-guix, we don't see any columns
spanning since the commit 338154a654
("website: Makefile.am: use common guix shell command.").

If we build the website at this commit (without --disable-guix) we see
that the '--commit=' argument is bogus in the command being used:
    guix time-machine --commit= -- shell --system=i686-linux
    --container --network --emulate-fhs --share=`realpath ../` bash
    coreutils findutils git grep nss-certs pandoc sed -- ./build.sh

And we then ends up with this message:
    guix time-machine: error: Git error: unable to parse OID - too short

This was then repaired in the commit
2e3818668d ("website: use Guix
v1.4.0."), but we then end up without 'colspan' because we ended up
using older software that don't support this feature.

There are two reasons for not relying yet on this feature:
- We want to use Guix v1.4.0.
- We build a tarball of the website is also part of the release, and
  guix is not used during the build. And we need all distributions to
  produce at the very least a functionally equivalent output.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 14:44:18 +01:00
78018400c1
website: status: tables: fix uncomplete columns.
This was present from the start in the commit
540bcca0fb ("website: status: Add GNU
Boot 0.1 RC5.").

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 14:42:41 +01:00
8918dbe129
website: status: 0.1 RC5: set ThinkPad R400 as tested.
Reported-by: DiffieHellman on #gnuboot in Libera.​Chat
Link: https://savannah.gnu.org/bugs/index.php?66579
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 14:41:43 +01:00
781c466478
website: status: 0.1 RC5: set ThinkPad T500 as tested.
Reported-by: DiffieHellman on #gnuboot in Libera.​Chat
Link: https://savannah.gnu.org/bugs/index.php?66570
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 14:36:00 +01:00
b8428da976
packages: roms: tests: Fix Trisquel LVM test.
This was broken from the start in the commit
9cc02ddde1 ("packages: roms: Start
adding automatic tests.").

I vaguely remember having made the original tests with Trisquel 10,
and if we select LVM in Trisquel 10 both in the graphical and
netinstall installers, it ends up creating a BIOS boot partition (code
ef02), an UEFI partition (code ef00) in the case of the graphical
installer, and an LVM physical volume. I then migrated the automatic
test to Trisquel 11 before sending the patch.

But with the commit 9cc02ddde1
("packages: roms: Start adding automatic tests."), we end up with a
rootfs that has a /boot partition, so GRUB will find that and use it
to boot, without testing if GRUB can find the grub.cfg inside the LVM
partition.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 14:33:25 +01:00
9445b1c9e6
packages: roms: download: fix preseed.img argument.
This was broken from the start in the commit
9cc02ddde1 ("packages: roms: Start
adding automatic tests.").

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 14:32:18 +01:00
04bb64d9e7
packages: roms: download: help: add missing rootfs.img.
We already have a 'rootfs.img' argument but it is not documented in
the help.

This was broken from the start in the commit
9cc02ddde1 ("packages: roms: Start
adding automatic tests.").

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-27 14:29:24 +01:00
ddb517e3de
resources: grub: config: unify dev and devices variables.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-15 01:00:36 +01:00
ce01a8a7cf
resources: grub: config: fix non-working regexp.
If we do 'ls' in grub, the LVM volumes looks like that: '(lvm/[...])'
and while in certain conditions, the parenthesis are not necessary, in
the case of the code that does the regexp, it is required.

I vaguely remember having made the original tests with Trisquel 10,
and if we select LVM in Trisquel 10 both in the graphical and
netinstall installers, it ends up creating a BIOS boot partition (code
ef02), an UEFI partition (code ef00) in the case of the graphical
installer, and an LVM physical volume. I then migrated the automatic
test to Trisquel 11 before sending it.

But with the Trisquel 11 automatic test, we end up with a boot
partition, so the test will always succeed regardless of weather or
not GRUB is capable of booting from LVM partitions.

This was also tested on real hardware with Trisquel 10 installed with
the graphical installer.

The most likely explanation is that the GRUB config file being tested
also differed from the one in git, especially because both the
automatic tests and the manual tests were tested with both a
non-working GRUB configuration and a working one.

In addition using the new configuration file on a computer that was
using an old Libreboot version probably from around 2016 was made to
boot again using this new configuration file, and this looks even
more strange.

A possible explanation could be that the GRUB version is different,
though the given computer is not available for further testing, so
it's not possible to confirm that hypothesis.

Reported-by: Adrien Bourmault <neox@gnu.org>
neox: private bug report and the information on how to fix it.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Tested-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-13 17:23:03 +01:00
adff0c4436
resources: grub: config: fix wrong dev/device variable.
This was not caught because the dev variable is used earlier and so it
produces no error.

In addition the commit 860b00bf1e
("ressources/grub, website: add LVM2 support (fix bug #65663 "No
support for LVM2").") where this issue was introduced was not tested
with LVM partitions that are encrypted.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-13 17:11:29 +01:00
3faff837dd
resources: grub: config: (ab)use shellcheck to check it.
While the grub configuration file format is very different from real
shell scripts, the similarities are enough to make it pass shellcheck
with very few adjustements.

The advantage of using shellcheck here is that we can still detect
some issues such as variables that are referenced but not assigned.

For instance if we add 'echo "$test"' in the beginning of the
configuration file we then have:
    In resources/grub/config/grub.cfg line 24:
    echo "$test"
          ^---^ SC2154 (warning): test is referenced but not assigned
          (for output from commands, use "$(test ...)" ).

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-13 17:10:08 +01:00
4e61be9dec
website: history: Add git history of website-build.
This adds information about the merge of the website-build history
inside the GNU Boot main repository.

This doesn't have details of where website-build was before being
integrated in Genuine Libreboot, but since the history is preserved in
git and that we don't track much the rename of projects yet (like the
rename of retroboot to osboot), it's about the same level of details
than the rest.

In addition, website-build was most likely somewhere on
https://git.sr.ht/~gnutoo but I don't recall the exact repository
names or the exact moves between Genuine Libreboot, GNU Boot, and
repositories in https://git.sr.ht/~gnutoo, but this level of detail is
not very relevant, especially because I use my own repositories to
work on things before sending them to upstream projects, and so only
keeping the official projects makes more sense as it simplifies the
history.

The https://git.sr.ht/~libreboot/lbwww-build path was confirmed with
https://archive.org/web.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-13 17:07:00 +01:00
4a9e074b6b
website: status: 0.1 RC5: set ThinkPad X200 as tested.
The grub_x200_8mb_corebootfb_frazerty.rom was tested on a ThinkPad
X200. The computer booted fine.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-12 22:58:35 +01:00
972e93d80f
website: pages: Get GNU Boot: Add warnings to keep non-working images.
We ship images for computers like the Gigabyte D945GCLF2D which are
not working. All the SeaBIOS images are also not working in the GNU
Boot 0.1 RC4. And many of the images were never tested.

In the 0.1 RC4 the images were removed from the FTP as keeping them
would increase too much the risk of users breaking their computer.

However to make the removal of images really work, the people
responsible for the release would then need to test all the images
themselves to be really sure that things are working, or to somehow
build a procedure where some users privately get the images before the
release.

This doesn't work because it would put too much burden on the actual
maintainers: it would require too much time for testing all the images
and this is not automated. In additions the current maintainers don't
even have all the supported computers and the GNU Boot project relies
on all users that can test to test the images.

In addition, releasing the images as part of the release procedure is
easier for everybody: the testers can also get the full source code
easily, they don't need to use custom images, anyone can test, etc.

Because of that it was decided that it was better to teach users to
minimize the risk themselves by looking at the status before upgrading
GNU Boot.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-12 22:57:00 +01:00
540bcca0fb
website: status: Add GNU Boot 0.1 RC5.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-12 22:56:17 +01:00
7eb94b3f81
website: status: add 0.1 RC4 with the 4 image types.
Before we had columns for installation and upgrade. These got replaced
to add the 4 image types as space was missing for all of them: it
would have made the markdown lines over 80 characters and it may also
create tables whose width is too big to be readable.

The installation and upgrade instructions were not added in an
additional table because:

- so far nobody tested trying to find instructions on the GNU Boot
  website to install GNU Boot,

- we plan to (re)write install and upgrade instructions to make them
  easier to use than what is currently scattered around the website.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-12 22:55:43 +01:00
5c867e65f6
coreboot: t400_8mb: add debugging configuration
This commit adds a debugging configuration file for the t400_8mb image,
enabling building debugging images with UART console support and RAM
initialization debugging messages, for both corebootfb and txtmode displays.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-07 14:13:55 +01:00
5535113f1d
coreboot: x200_8mb: add debugging configuration
This commit adds a debugging configuration file for the x200_8mb image,
enabling building debugging images with UART console support and RAM
initialization debugging messages, for both corebootfb and txtmode displays.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-07 14:13:08 +01:00
9f84dc5972
coreboot: kgpe-d16: rdimm_2mb: add debugging configuration
This commit adds a debugging configuration file for the D16 RDIMM 16MB image,
enabling building debugging images with UART console support and RAM
initialization debugging messages.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-07 14:12:46 +01:00
83e980894c
coreboot: qemu-pc: add debugging configuration
This commit adds debugging configuration files for the qemu-pc_2mb image,
enabling building debugging images with UART console support.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-07 14:06:47 +01:00
b4a5a47499
packages: roms: release: include debug images in the release
This commit includes debugging images (with UART console) from bin-dbg in the
release, for instance in the roms-dbg directory. Tar files contain the string
"debug" to avoid people installing a debug image by accident, which can be a
problem as it can cause longer boot times. We also include a README explaining
what are the debugging settings.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
GNUtoo: created the README
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-07 14:06:18 +01:00
56c59af861
packages: roms_helper: boot: add support for debug configuration
When a computer does not boot at all or the result is only a deep black screen,
a very useful option can be to use a serial connector to get UART debug console
and read it, looking for any useful hint. However, enabling UART debug console
with a sufficient level of details slows down the boot process in most cases.

This commit adds the capability to build debug images, using a special
configuration file for coreboot with debug options. This is a simplistic way
that works for now, but should be improved later on.

These debug images will be generated in the bin-dbg/ directory instead
of bin/ where regular images are located.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-07 13:51:20 +01:00
fe30ffd6ee
packages: roms_helper: boot: add missing GNUtoo copyright notice
Denis 'GNUtoo' Carikli substancially modified this file at least with the
commits:

a202dce646 (images: remove 'libgfxinit' from the image names)
80f75a334f (rename seabios_withgrub images to seabios)
6fa9af30ad (Remove images with the seabios_grubfirst main payload)
5b9dd7adba (packages: fix calls to build descriptors)
585f4d359a (coreboot/i945 Thinkpads: replace dd commands with INTEL_ADD_TOP_SWAP_BOOTBLOCK)

This commit thus adds GNUtoo's copyright notice.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-07 13:50:58 +01:00
6e7a51796e
packages: roms: boot: add missing GNUtoo copyright notice
Denis 'GNUtoo' Carikli substancially modified this file at least with the
commits:

d0028b81ed (packages: roms: boot: add --help option)
9cc02ddde1 (packages: roms: Start adding automatic tests)
1611a810b4 (packages: roms: boot: filter out invalid computers)

This commit thus adds GNUtoo's copyright notice.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-07 13:50:33 +01:00
51f1a9fa34
packages: roms: release: add missing GNUtoo copyright notice
Denis 'GNUtoo' Carikli substancially modified this file at least with the
commits:

f0959c9283 (packages: roms, src: release: xz: show progress)
fd9986da0b (Move releases from releases/<git describe> to releases)

This commit thus adds GNUtoo's copyright notice.

Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-07 13:49:03 +01:00
577ed96bde
website: force-bordeaux-substitutes: fix e-mail address in copyright notice
Signed-off-by: Adrien 'neox' Bourmault <neox@gnu.org>
Acked-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2024-12-04 17:21:45 +01:00
baeff960e5
website: status: mention reproducible builds status.
The list of files retrieved by producing files with 'cbfstool
<path/to/image> print' and greping inside that. The image files for
that were the ones generated by the official build of GNU Boot 0.1
RC4.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-04 17:10:30 +01:00
3d459fb0d8
packages: images: tests: require essential cbfs files.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
neox: fixed a typo in comment
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-04 17:10:01 +01:00
b9e107e886
packages: roms: release: fix line length.
This should contain no code changes.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
2024-12-04 17:05:16 +01:00