aboutsummaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorAndrew Robbins <contact@andrewrobbins.info>2017-09-15 23:42:03 -0400
committerAndrew Robbins <contact@andrewrobbins.info>2017-09-16 03:38:13 -0400
commit92c06a3ca0d99087e6a51cf672d2cf898bfe4b02 (patch)
tree6f867f58211f04c1e95a4721d5403cdfdaacb2f5 /projects
parent909a3a8c16f2082bd7f4d3e1d9073fcdace28310 (diff)
downloadlibrebootfr-92c06a3ca0d99087e6a51cf672d2cf898bfe4b02.tar.gz
librebootfr-92c06a3ca0d99087e6a51cf672d2cf898bfe4b02.zip
Remove unnecessary comments from SeaBIOS script
Diffstat (limited to 'projects')
-rwxr-xr-xprojects/seabios/seabios4
1 files changed, 0 insertions, 4 deletions
diff --git a/projects/seabios/seabios b/projects/seabios/seabios
index a0682204..b9e0882a 100755
--- a/projects/seabios/seabios
+++ b/projects/seabios/seabios
@@ -75,20 +75,16 @@ build() {
(
cd "${sources_path}"
- # Copy the config file for target into working directory
cp "${seabios_config_path}" .config
- # Compile SeaBIOS first
make -j"${TASKS}"
- # Copy the ELF to its build directory
if [[ "$1" == 'txtmode' ]]; then
cp out/bios.bin.elf "${build_path}"
elif [[ "$1" == 'vga' ]]; then
cp out/vgabios.bin "${build_path}"
fi
- # Tidy up
make distclean
rm -f .config
)