Tagged Questions

Bootloader is a program that loads the operating system into the computer's memory and set it into execution. When a computer is powered-up or restarted, the basic input/output system (BIOS) performs some initial tests, and then transfers control to the Bootloader.

learn more… | top users | synonyms

20
votes
4answers
669 views

Bootloader in C/C++?

Is it possible to create a bootloader in C or C++ without using some type of Assembler (and preferably without using __asm)? I'm writing an Operating System and would like it to be completely written ...
12
votes
11answers
3k views

To write a bootloader in C or C++?

I am writing a program, more specifically a bootloader, for an embedded system. I am going to use a C library to interact with some of the hardware components and I have the choice of writing it ...
9
votes
1answer
137 views

Where is there good information about low level PC booting?

I'm interested in writing a boot loader for USB sticks that looks for a directory of ISOs and gives you the option to boot one of them as if it were a bootable CD. This is basically so I have a menu ...
6
votes
1answer
118 views

Hey, I need some help with my custom bootloader

Im trying to write a bootloader for a Hobby OS and have it working great. Nothing Special, just prints a line of text: BITS 16 ORG 0 start: jmp main OEM db "Test OS " ...
6
votes
4answers
814 views

A boot loader in C++

I have messed around a few times by making a small assembly boot loader on a floppy disk and was wondering if it's possible to make a boot loader in c++ and if so where might I begin? For all I know ...
6
votes
1answer
2k views

Wireless programming with the Arduino XBee Sheild and XBee Explorer

I am trying to enable wireless programming of an Arduino via the XBee Shield and an XBee Explorer. I've seen two tutorials online, XBee radios and Wireless Bootloading for ATmega168/ATmega328 that ...
6
votes
4answers
1k views

GCC, ARMboot - Creating standalone application without any library and any OS

I have an embedded hardware system which contains a bootloader based on ARMboot (which is very similar to Uboot and PPCboot). This bootloader normally serves to load uClinux image from the flash. ...
5
votes
2answers
431 views

My OS Kernel in D: Some embedded strings don't work

I'm aware that is a rather difficult question to answer, mainly because there's so many things that could be wrong that it's hard to pin things down. But I'll give as much info as I can; hopefully ...
5
votes
3answers
651 views

MBR Booting from DOS

For a project I would like to invoke the MBR on the first harddisk directly from DOS. I've written a small assembler program that loads the MBR in memory at 0:7c00h an does a far jump to it. I've put ...
4
votes
4answers
329 views

Write Bootloader in C

I am a newbie in writing bootloaders. I have written a helloworld bootloader in asm, and I am now trying to write one in C. I have written a helloworld bootloader in C, but I cannot compile it. This ...
4
votes
6answers
189 views

C without stdio, what is possible?

I've been interested in programming an operating system for some time. Delving through a few different sites, I've come across an interesting concept (to paraphrase): if you start writing your ...
4
votes
2answers
91 views

Where to store the bootloader on a floppy image?

I'm going to write and test a bootloader. In order to do this, I am planning to copy the bootloader onto a floppy image file and mount it in a VM. However, I'm not sure where to put the bootloader's ...
4
votes
1answer
620 views

Arduino Bootloader

Can someone please explain how the Arduino bootloader works? I'm not looking for a high level answer here, I've read the code and I get the gist of it. There's a bunch of protocol interaction that ...
4
votes
2answers
731 views

Hello World bootloader not working!

I've been working through the tutorials on this webpage which progressively creates a bootloader that displays Hello World. The 2nd tutorial (where we attempt to get an "A" to be output) works ...
4
votes
3answers
851 views

What is significance of memory at 0000:7c00 to booting sequence?

Why does bios read at partition's boot record at 0000:7c00 ? What is special about that address ? what ':' doing in referencing an address ?
4
votes
1answer
141 views

Custom code with GRUB?

Can I run some some custom code at the time when GRUB loads up? In other words does GRUB provide a facility to run some custom code before loading any operating system?
4
votes
5answers
405 views

Arguments to kernel

Is there anything that the kernel need to get from the boot loader.Usually the kernel is capable of bringing up a system from scratch, so why does it require anything from boot-loader? I have seen ...
3
votes
1answer
140 views

NASM Boot Loader strange behavior

I'm trying to write a boot loader but none of my experiments didn’t worked until I found this question: why this boot loader doesn't working? I had simplified this program to only write a char ...
3
votes
1answer
95 views

Error in bootloader: Help in assembly

I am trying to create a simple operating system, yet when I compile the bootloader, I get the error: error: binary output format does not support external references I know what this error means, ...
3
votes
1answer
114 views

Fetching the kernel parameters passed via bootloader (grub)

How can be accessed kernel parameters (passed via Grub) in initramfs's init script? I have idea to introduce some param and use use it init like if(myparam == 0) {} else {}
3
votes
2answers
720 views

How does the bootloader pick up the command after a “restarting system with command”?

Looking in the android source for the reboot command we find the following line: __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, \ LINUX_REBOOT_CMD_RESTART2, argv[optind]); Which is the ...
3
votes
8answers
274 views

OS from Scratch

Although the title is part of my question, the second part won't be as simple. The First part: Let's say I want to create my own operating system. How do I even go about doing that? I understand I ...
3
votes
2answers
123 views

Explanation of assembly code

I have started to learn assembly. I came across these lines. ;*************************************************; ; OEM Parameter block / BIOS Parameter Block ...
3
votes
1answer
213 views

Theory behind bootloader

I have downloaded few bootloaders from osdev and successfully loaded a kernel. But now I want to learn theory behind bootloader. I want to know why the system boots up and everything behind the ...
3
votes
3answers
2k views

What is a “Javascript Bootloader”?

I have seen this mainly in the source of Facebook "Bootloader.setResourceMap({"bMxb7":{"name":...." What is exactly a bootloader in javascript? what is its use and purpose? Thank you =)
3
votes
1answer
314 views

Stack segment in the MikeOS bootloader

I don't understand this piece of code :) mov ax, 07C0h ; Set up 4K of stack space above buffer add ax, 544 ; 8k buffer = 512 paragraphs + 32 paragraphs (loader) cli ; Disable ...
3
votes
4answers
265 views

Why is my boot loader's stack segment at 0x3FF (end of Real Mode IVT)?

Title says it all. "address 0x500 is the last one used by the BIOS" is what Wikipedia - "00000000-000003FF Real Mode IVT (Interrupt Vector Table)" is what osdev.org's article over the BIOS ...
3
votes
1answer
856 views

How to get uBoot to work with a squashfs / What is FDT in uBoot?

I set-up the Kamikaze toolchain (from openwrt), and compiled Linux 2.6.30.x kernel for an AMCC PPC405ex kilauea reference board. However, for some reason I am doing something wrong in uBoot, as I am ...
3
votes
1answer
1k views

Develop a Bootloader In Assembly

I've already done a part of my OS in Assembly, but now I want to build a own bootloader for it too instead of using GRUB. When I was developing my test OS in Assembly I remember that I boot it like ...
3
votes
1answer
782 views

How to load second stage boot loader from first stage?

I have written simple first stage bootloader which displays "Hello world" using interrupt to bios. Now as a next obvious step to write a second stage, but where code for that should exist and how to ...
3
votes
2answers
182 views

Threading on bootloader

Where can I find resources/tutorials on how to implement threads on a x86 architecture bootloader... lets say I want to load resources in the background while displaying a progress bar..
2
votes
1answer
43 views

Calculating Head, Cylinder (Track) and Sector for BIOS Interrupt 13h

I am currently trying to learn bootloader and eventually an OS by reading an open source code. The one I selected is MikeOS: http://mikeos.berlios.de/ While I was reading the bootloader code, I got ...
2
votes
1answer
135 views

How to set ARM user app start address when using USB bootloader?

Just picked up one of these ARM Cortex-M3 LPC1768 mini boards from eBay. It's basically a breakout board. However, based on what little documentation came with it, I've determined that it has a USB ...
2
votes
3answers
80 views

How a bootloader can read a DVD(cd)?

I have a first stage bootloader written in assembly. I need that it loads the second stage bootloader from dvd(or cd). I only found examples where it reads from floopy or hdd. The interrupt used there ...
2
votes
1answer
114 views

Loading 2nd stage of bootloader and starting it

Recently I'm trying to get a hang on how bootloaders work. I'm writing my loader in nasm assembler and test it with bochs and a floppy image. The compiled binaries for stage 1 and 2 get joined via ...
2
votes
2answers
108 views

process of running linux executable

Is there good documentation of what happen when I run some executable in Linux. For example: I start ./a.out, so probably some bootloader assembly is run (come with c runtime?), and it finds start ...
2
votes
2answers
217 views

Simple NASM “boot program” not accessing memory correctly?

**Note that when I say boot program, I don't mean a program that boots an OS. I mean, a simple program that runs when you start up the computer and does something. Alright, so I'm not extremely ...
2
votes
1answer
795 views

What is the booting process for ARM?

As we know, for X86 architecture: After we press the power button, machine starts to execute code at 0xFFFFFFF0, then it starts to execute code in BIOS in order to do hardware initialization. After ...
2
votes
1answer
236 views

bios int 0x13 fails without error

I'm writing a bootloader for educational use and it goes quit well. But when I tried to boot on a real machine my disk read code fails to load some sectors. No error code is given nor is the CF set. ...
2
votes
1answer
189 views

Boot a physical machine directly from a virtual image

I have been searching for a way to boot a physical machine from a virtual image (.vhd or .vmdk). I found solutions using the loader that Microsoft provides with windows 7, but that is not of much real ...
2
votes
1answer
604 views

bootloader - switching processor to protected mode

I'm having difficulties understanding how a simple boot loader works. The boot loader I'm talking about is the one from MITs course "Operating Systems Engineering". First, let me show you a piece of ...
2
votes
1answer
610 views

From bootsector to C++ kernel

I decided to write a simple asm bootloader and a c++ kernel. I read a lot of tutorials, but I cant compile an assembly file seems like this: [BITS 32] [global start] [extern _k_main] start: call ...
2
votes
1answer
776 views

How do I add “Press any key to boot from usb” when installing Windows from a flash drive? (Grub4dos question / how to remove a bootloader)

I've been struggling with this problem for a while now and finially decided to ask for help. Let me first explain what the main purpose of the app is: to provide the a very easy to use way of backing ...
2
votes
2answers
368 views

OS's Boot-loader doesn't work

I am making a custom Operating System. I have two nasm files: boot.asm: [BITS 16] ;tell the assembler that its a 16 bit code [ORG 0x7C00] ;Origin, tell the assembler that where the code will ...
2
votes
1answer
148 views

How to load kernel into memory, from an ISO

At compile-time I link my Assembly bootstrap together with my kernel, into an *.img file, which I then convert into an *.iso image using MagicISO. I then boot from this *.iso image. But the problem is ...
2
votes
2answers
2k views

How to program a bootloader..? Want a USB Flash Drive with Windows 7, XP, Vista, and perhaps 98 SE on it to use for installs

Hello again my fellow StackOverflow friends! What I would very much like to do is copy the contents of my Windows 7, Windows XP (Pro and Home SP3), Windows Vista, and assuming I have space left for ...
2
votes
1answer
131 views

Printing character from boot loader

I am trying to print character from boot loader using code [BITS 16] ;Tells the assembler that its a 16 bit code [ORG 0x7C00] ;Origin, tell the assembler that where the code will ;be in ...
1
vote
1answer
23 views

How to use debug.exe to load a flash drive [ pendrive ] and view its boot record?

The drive letter if F, and i want to read its boot record for this task : http://joelgompert.com/OS/lesson1.htm ... [ i am using xp ] I cant get the l command to work properly... when they ask us to ...
1
vote
2answers
83 views

int 13h ah=08h , What am i doing wrong?

okay, so this is my code.. mov ah,08h mov dl,80h ;have Tried for 81h,82h.... int 13h mov ah,0Eh int 10h ; printing the value in al. int 10h prints the ascii character on screen after ...
1
vote
1answer
63 views

Bootloader tutorials don't work for me

I've tried using some of the assembly tutorials around the web, and most of them don't work for me. I'm using NASM, and VirtualBox (Couldn't get Bochs to work either), and stuff like this works: ...

1 2 3