fixed merge in setup

This commit is contained in:
shockrah
2020-04-22 20:49:40 -07:00
4 changed files with 13 additions and 5 deletions

View File

@@ -4,6 +4,14 @@
dpkg -s bochs
if [ $? -ne 0 ];then
apt install bochs-x
else
echo Nothing to install
fi
gen=`dpkg --list | grep genisoimage`
if [ -z "$gen" ]; then
sudo apt-get install genisoimage
fi
nasm=`dpkg --list | grep nasm`
if [ -z "$nasm" ]; then
sudo apt-get install nasm
fi