mirror of
https://github.com/samsonjs/kernel.git
synced 2026-03-25 09:25:46 +00:00
8 lines
190 B
Bash
Executable file
8 lines
190 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# run_bochs.sh
|
|
# mounts the correct loopback device, runs bochs, then unmounts.
|
|
|
|
sudo /sbin/losetup /dev/loop0 floppy.img
|
|
sudo bochs -f bochsrc
|
|
sudo /sbin/losetup -d /dev/loop0
|