Tagged Questions
12
votes
1answer
385 views
Simple kernel won't boot in GRUB
I'm learning a bit of OS development from OSDev.org. I have a kernel and I'm trying to boot in GRUB Legacy (0.97) using qemu. However, when I type kernel 200+9, I get the message
[Multiboot-elf, ...
1
vote
1answer
170 views
Change GRUB's variable using a C language
I was wondering if there is any way for me to write a C program to change the value off GRUB's variables.
I need to write a program that can reboot my computer on another OS, for example :
I am on ...
0
votes
2answers
56 views
Query regarding main() of GRUB
Below is the code of main() of grub. Here I want to know about this line:
file = fopen(arg_v[1], "rb");
Here which file fopen is opening? What file this arg v[1] is pointing to?
int main(unsigned ...