mirror of
https://github.com/samsonjs/kernel.git
synced 2026-03-25 09:25:46 +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
|