Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
arakis committed Nov 2, 2019
1 parent d88e30a commit 5e26f1a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions abctl
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,9 @@ function create_efi_disk {
if [ -f $ABANU_OSDIR/Abanu.DisplayServer.bin ]; then
mcopy -i $disk -s $ABANU_OSDIR/Abanu.DisplayServer.bin ::/DSPSRV.BIN
fi
if [ -f $ABANU_OSDIR/App.GuiDemo.bin ]; then
mcopy -i $disk -s $ABANU_OSDIR/App.GuiDemo.bin ::/GUIDEMO.BIN
fi
mcopy -i $disk -s $isodir/TEST.TXT ::/TEST.TXT

echo $disk created
Expand All @@ -559,6 +562,9 @@ function create_grub_hybrid_disk {
if [ -f $ABANU_OSDIR/Abanu.DisplayServer.bin ]; then
cp $ABANU_OSDIR/Abanu.DisplayServer.bin $isodir/DSPSRV.BIN 2>/dev/null
fi
if [ -f $ABANU_OSDIR/App.GuiDemo.bin ]; then
cp $ABANU_OSDIR/App.GuiDemo.bin $isodir/GUIDEMO.BIN 2>/dev/null
fi
rm -f $isodir/TEST.TXT
echo "This is a test file V2" > $isodir/TEST.TXT

Expand Down

0 comments on commit 5e26f1a

Please sign in to comment.