Skip to content

Commit

Permalink
Resolution update, added build.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
ChubbyAnt committed Oct 21, 2019
1 parent ca4e07f commit e29fbb1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash
rm -r build
mkdir build
set -e
set -x
autoreconf --install >>build/1_autoreconf.log 2>&1
./configure >>build/2_configure.log 2>&1
make all -j25 >>build/3_make_all.log 2>&1
cd images
./getresources >>../build/4_getresources.log 2>&1
./buildpbaroot >>../build/5_buildpbaroot.log 2>&1
./buildbios >>../build/6_buildbios.log 2>&1
./buildUEFI64 >>../build/7_buildUEFI64.log 2>&1
./buildrescue Rescue32 >>../build/8_buildRescue32.log 2>&1
./buildrescue Rescue64 >>../build/8_buildRescue64.log 2>&1
cd ..
echo "Build done"
2 changes: 1 addition & 1 deletion images/buildroot/syslinux.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ noescape 1
label DTA
kernel bzImage
initrd rootfs.cpio.xz
append loglevel=0 libata.allow_tpm=1 acpi=off nomodeset
append loglevel=0 libata.allow_tpm=1 video=efifb:width:1280,height:720 text

0 comments on commit e29fbb1

Please sign in to comment.