Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ===== coreboot build environment ===== Install git: <code bash> sudo apt install git </code> Clone the source repository: <code bash> git clone https://review.coreboot.org/coreboot.git coreboot cd coreboot/ </code> Install build dependencies: <code bash> sudo apt install acpica-tools bison build-essential doxygen flex gnat libncurses5-dev libpci-dev m4 zlib1g-dev </code> Build the cross-compiler: <code bash> make crossgcc-i386 </code> ----