git-svn-id: https://spexeah.com:8443/svn/Asuro@674 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c

This commit is contained in:
kieron 2018-05-08 02:15:00 +00:00
parent 680b758ee7
commit 35528c3b5c
16 changed files with 70 additions and 6 deletions

BIN
Asuro.iso

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

53
mount.sh Executable file
View File

@ -0,0 +1,53 @@
#!/bin/sh
ERRCOUNT=0
echo " "
echo "======================="
echo "== ASURO MOUNT =="
echo "======================="
echo " "
echo "Mounting Asuro..."
sudo modprobe nbd
if [ $? -ne 0 ]
then
echo "Failed load nbd!"
ERRCOUNT=$((ERRCOUNT+1))
fi
sudo qemu-nbd --connect=/dev/nbd0 IMAGE.img
if [ $? -ne 0 ]
then
echo "Failed to mount Image!"
ERRCOUNT=$((ERRCOUNT+1))
fi
sudo partx -a /dev/nbd0
if [ $? -ne 0 ]
then
echo "Failed to find Partitions!"
ERRCOUNT=$((ERRCOUNT+1))
fi
sudo mount /dev/nbd0p1 /mnt/asuro
if [ $? -ne 0 ]
then
echo "Failed to mount Asuro!"
ERRCOUNT=$((ERRCOUNT+1))
fi
echo " "
echo "======================="
echo " "
if [ "$ERRCOUNT" -ne "0" ]
then
./unmount.sh
echo " "
echo "======================="
echo " "
echo "$ERRCOUNT Errors Occurred, please review."
else
echo "No errors."
fi
echo " "
echo "======================="
echo " "

View File

@ -3,20 +3,20 @@ unit asuro;
interface interface
const const
VERSION = '1.0.1-672ia'; VERSION = '1.0.1-673ia';
VERSION_MAJOR = '1'; VERSION_MAJOR = '1';
VERSION_MINOR = '0'; VERSION_MINOR = '0';
VERSION_SUB = '1'; VERSION_SUB = '1';
REVISION = '672'; REVISION = '673';
RELEASE = 'ia'; RELEASE = 'ia';
LINE_COUNT = 28133; LINE_COUNT = 27530;
FILE_COUNT = 89; FILE_COUNT = 88;
DRIVER_COUNT = 33; DRIVER_COUNT = 32;
FPC_VERSION = '2.6.4'; FPC_VERSION = '2.6.4';
NASM_VERSION = '2.10.09'; NASM_VERSION = '2.10.09';
MAKE_VERSION = '3.81'; MAKE_VERSION = '3.81';
COMPILE_DATE = '08/05/18'; COMPILE_DATE = '08/05/18';
COMPILE_TIME = '00:44:47'; COMPILE_TIME = '01:09:46';
implementation implementation

11
unmount.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
ERRCOUNT=0
echo " "
echo "========================="
echo "== ASURO UNMOUNT =="
echo "========================="
echo " "
echo "Unmounting Asuro..."
sudo umount /mnt/asuro
sudo qemu-nbd --disconnect /dev/nbd0
sudo rmmod nbd