Nigel
a77621faf5
- Improved the run bash script to exit when an error occurs in one of the sub tasks - Wrote basic FAT16 functions that should give enough information to properly implement the rest of the driver - FAT structure namings are now in accordence with the microsoft spec of March 2005
26 lines
302 B
Bash
Executable File
26 lines
302 B
Bash
Executable File
#!/bin/bash
|
|
PROC=$$
|
|
|
|
# Build the Corelib static library
|
|
(cd CoreLib
|
|
if ! make; then
|
|
echo "Build failed!"
|
|
kill -10 $PROC
|
|
fi)
|
|
|
|
# Build the kernel image
|
|
(cd kernel
|
|
make clean
|
|
make
|
|
if ! make; then
|
|
echo "Build failed!"
|
|
kill -10 $PROC
|
|
fi)
|
|
|
|
./scripts/update_harddrive.sh
|
|
|
|
|
|
|
|
./scripts/run_qemu.sh
|
|
|