2019-02-22 02:10:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
2019-02-22 02:29:17 +00:00
|
|
|
sudo apt update
|
2019-02-22 02:33:52 +00:00
|
|
|
sudo apt install -y build-essential uuid-dev iasl git nasm gcc-aarch64-linux-gnu bc
|
2019-02-22 02:10:58 +00:00
|
|
|
curdir="$PWD"
|
|
|
|
cd ..
|
|
|
|
git clone https://github.com/tianocore/edk2.git --recursive
|
|
|
|
git clone https://github.com/tianocore/edk2-platforms.git
|
|
|
|
cd "$curdir"
|
|
|
|
./firstrun.sh
|
|
|
|
./build.sh
|