Skip to content

Commit

Permalink
Added check to verify that memdisk has been copied to /boot
Browse files Browse the repository at this point in the history
  • Loading branch information
John Hull committed Aug 7, 2009
1 parent ca92f2a commit 836c3b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.65
0.90
4 changes: 4 additions & 0 deletions biosdisk
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@ function makeDpkg()
function install()
{
local kernel="/boot/memdisk"
if [ ! -f $kernel ]; then
echo "Can't find $kernel image"
exit 1
fi

if [ -z $title ]; then
title=`basename $destination`
Expand Down

0 comments on commit 836c3b3

Please sign in to comment.