mirror of
https://github.com/samsonjs/kernel.git
synced 2026-04-27 15:07:39 +00:00
11 lines
151 B
Bash
Executable file
11 lines
151 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd src
|
|
make
|
|
success=$?
|
|
cd ..
|
|
if [ $success -eq 0 ]; then
|
|
sudo ./update_image.sh
|
|
sudo ./run_bochs.sh
|
|
grep -F 'CPU0' bochs.out
|
|
fi
|