Help booting OS (xv6)
Posted: Thu May 22, 2014 2:19 pm
I want to boot xv6(a simple OS by MIT) on real x86 hardware. Im currently running it using qemu.
For starters,
There is a file inside xv6 source code with the following text
I dont have GRUB as Im using a windows machine. Secondly, I get two files upon compilation, XV6.img and FS.img
As I have no experience with booting self written OSes on real hardware, I need your help.
Cheers
For starters,
There is a file inside xv6 source code with the following text
Code: Select all
# Using GRUB 2, you can boot xv6 from a file stored in a
# Linux file system by copying kernel or kernelmemfs to /boot
# and then adding this menu entry:
#
# menuentry "xv6" {
# insmod ext2
# set root='(hd0,msdos1)'
# set kernel='/boot/kernel'
# echo "Loading ${kernel}..."
# multiboot ${kernel} ${kernel}
# boot
# }
As I have no experience with booting self written OSes on real hardware, I need your help.
Cheers