diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rwxr-xr-x | buildrom-withgrub | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -4,7 +4,7 @@ /flashrom/ /grub/ /memtest86+-5.01/ -/bin/* +/bin/ /grubinvaders/ /seabios/ /powertop/ diff --git a/buildrom-withgrub b/buildrom-withgrub index 01d131e..bd6c35f 100755 --- a/buildrom-withgrub +++ b/buildrom-withgrub @@ -31,6 +31,11 @@ if (( $# != 1 )); then exit 1 fi +if [ ! -d "bin" ] +then + mkdir bin/ +fi + cd coreboot # Build ROM images with text-mode and corebootfb modes. |