mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 01:44:34 +00:00
docker: Update coreboot
Update to a newer version which supports settings in CMOS RAM and linear framebuffer. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
790687c988
commit
1903aa72ec
1 changed files with 5 additions and 2 deletions
|
@ -244,12 +244,15 @@ RUN mkdir /tmp/trace && \
|
|||
rm -rf /tmp/trace
|
||||
|
||||
# Build coreboot
|
||||
RUN wget -O - https://coreboot.org/releases/coreboot-4.22.01.tar.xz | tar -C /tmp -xJ && \
|
||||
cd /tmp/coreboot-4.22.01 && \
|
||||
RUN wget -O - https://coreboot.org/releases/coreboot-24.08.tar.xz | tar -C /tmp -xJ && \
|
||||
cd /tmp/coreboot-24.08 && \
|
||||
make crossgcc-i386 CPUS=$(nproc) && \
|
||||
make -C payloads/coreinfo olddefconfig && \
|
||||
make -C payloads/coreinfo && \
|
||||
make olddefconfig && \
|
||||
echo CONFIG_GENERIC_LINEAR_FRAMEBUFFER=y | tee -a .config && \
|
||||
echo CONFIG_USE_OPTION_TABLE=y | tee -a .config && \
|
||||
make olddefconfig && \
|
||||
make -j $(nproc) && \
|
||||
sudo mkdir /opt/coreboot && \
|
||||
sudo cp build/coreboot.rom build/cbfstool /opt/coreboot/
|
||||
|
|
Loading…
Add table
Reference in a new issue