Coreboot: Difference between revisions
imported>Makefu Created page with "== Building == To build your own coreboot bios: <code> git clone http://review.coreboot.org/coreboot.git; cd coreboot nix-shell -p ncurses.dev bison flex clang zlib NIX_LDFLAG..." |
imported>Makefu m fix syntax highlight |
||
Line 1: | Line 1: | ||
== Building == | == Building == | ||
To build your own coreboot bios: | To build your own coreboot bios: | ||
< | |||
<syntaxHighlight lang=console> | |||
git clone http://review.coreboot.org/coreboot.git; cd coreboot | git clone http://review.coreboot.org/coreboot.git; cd coreboot | ||
nix-shell -p ncurses.dev bison flex clang zlib | nix-shell -p ncurses.dev bison flex clang zlib | ||
NIX_LDFLAGS="$NIX_LDFLAGS -lncurses" make menuconfig | NIX_LDFLAGS="$NIX_LDFLAGS -lncurses" make menuconfig | ||
make crossgcc | make crossgcc | ||
</ | </syntaxHighlight> |
Revision as of 23:38, 29 December 2017
Building
To build your own coreboot bios:
git clone http://review.coreboot.org/coreboot.git; cd coreboot
nix-shell -p ncurses.dev bison flex clang zlib
NIX_LDFLAGS="$NIX_LDFLAGS -lncurses" make menuconfig
make crossgcc