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

0
votes
0answers
8 views

Changing u-boot splash image/logo for sabre-sd board

I need to change the bootloader(u-boot) splash screen. can anybody please suggest me some solution to short out this problem. Thank You
0
votes
2answers
22 views

Uboot Option to print boot time prefixes

Is there any uboot config option to print boot sequence with time prefixes similar to kernel option CONFIG_PRINTK? I am expecting output like below, [ 0.000000] U-Boot 1.1.4-gedeced79 (Feb 6 ...
2
votes
1answer
22 views

Use TCP/IP before OS booted

I have tried to find ways to actually send and recieve data from a remote computer before the OS is booted with windows boootloader. Is there any way I can send or recieve data with TCP/P before the ...
0
votes
0answers
13 views

Programming bootloader section of flash with avrdude is slow

When programming the bootloader section of flash memory in a ATmega 8-bit processor, specifically the ATmega128, AVRdude is rather slow. All I want to write is the bootloader section of memory, which ...
0
votes
0answers
25 views

Stellaris Bootloader update

hallo im working with the Stellaris chip LM3S9B96 and im using the usb_stick_update. I modified it to update the internal flash of Stellaris and to update a SPI Flash over SSI. But now i want to make ...
2
votes
1answer
41 views

Why do interrupts need to be disabled before switching to protected mode from real mode?

I saw in many many oses (and some bootloader), they all disable interrupt (cli) before switch to protected mode from real mode. Why we need do that?
-1
votes
1answer
32 views

If Linux boot from ramdisk, then how does the boot loader find the ramdisk [closed]

If Linux boot from ramdisk, then how does the boot loader find the ramdick since the ramdisk resides on hard disk and the drivers are still not loaded. and still if linux boot from IDE disk, why ...
2
votes
1answer
37 views

how stage 1 boot loader loads the stage 2 bootloader

From the past week I am puzzled with the question that how the grub first stage boot loader which is only 446 bytes is able to search for the second stage, when the second stage is in a complex file ...
0
votes
0answers
163 views

Flashed bootloader, now adb/fastboot no longer see the device

I was restoring a nexus s to a factory image as I've done before on other nexus s phones. After flashing the bootloader, I can no longer connect to the phone with ADB. "Enable USB debugging" is ...
0
votes
3answers
47 views

How to insert x86 opcode data from .data segment bits in to operand instruction in x86 machine code?

I am working on an x86 bootloader written entirely in opcodes, no headers, all binary. The problem is that Intel's ISA manual does NOT include how to include data segment bytes from .data segment ...
0
votes
1answer
56 views

Having Trouble Saving Boot Sector On Disk And OS On Disk Then Loading It In Memory

Background Information I am developing a simple DOS like OS. So I am not planning to enter in Protected Mode anytime soon. The OS will be written in assembly; NASM syntax by the way. The boot sector ...
0
votes
0answers
20 views

how to reinstall grub on cloned ubuntu disk?

Hi say I have 3 disks: /dev/sda a normal linux os (mounted as rootfs /) /dev/sdb source os (ubuntu 12.04) (1 partition, ext4 mounted as /mnt) /dev/sdc blank disk (fdisk + mkfs.ext4 and mounted as ...
0
votes
2answers
40 views

Boot Loader in Linux

I hve coded the following bootloader program.but there is a problem. ;=================================================================== ;Following is an incomplete code of a boot-loader with ...
0
votes
1answer
365 views

About Raspberry PI boot loader

Recently I started to study about Embedded System and Embedded Linux. I know that in embedded system, OS is stored on Flash or ROM and when it's turned on, boot loader load OS on main memory, and in ...
1
vote
2answers
30 views

Insert background image to the bootloader

I have created a boot loader in Assembly which is outputting "Hello World". I want to insert a background image to this boot loader. So how can I modify this code? Thank you very much. bits 16 ; org ...
0
votes
0answers
143 views

Borked BCD Boot Manager: Windows 8 [closed]

I recently installed a couple new hard drives in my PC, and all of a sudden, my Windows install would not boot. System Restore didn't do anything, i.e. it would sit there, no progress. I tried doing ...
2
votes
0answers
20 views

can a ssd have a mbr and bootloader? [migrated]

I install both linux and windows on my newly bought ssd(sda) and when i installed linux, i chose to install the bootloader on ssd(sda). After i finished, i got only a black screen when i chose to boot ...
0
votes
0answers
16 views

How to boot a simple kernel with existing bootloaders

I have written a simple kernel that is a simple binary file. My question is: Is it possible to boot my kernel with LILO or Grub? How?
-1
votes
0answers
27 views

How to dump and decrypt the iOS bootloader

If I want to dump and decrypt the iOS bootloader, what should I do? e.g., I have a iphone 5 and I would like to dump the bootloader binary in order to analysis the binary code of the bootloader. What ...
2
votes
3answers
84 views

what tool for debugging a linux kernel?

I am new to linux kernel. wandering how to browse the complete flow, right from the power up of CPU. Basic idea on BIOS/ROM code. can I have some tool to debug the complete kernel ? or raw code ...
0
votes
0answers
29 views

What register needs to be set for booting linux kernel from bootloader

I am new to bootloader stuff and going through u-boot code and looking into file zimage.c file with boot_zimage function and following are comments from boot_zimage function Set %ebx, %ebp, and %edi ...
0
votes
0answers
13 views

How to add harddisk or cpu test in Grub menu

I would like to do some hardware test before start up OS(linux). I know bios already do such kind of tests, but I still want to do it(perhaps add my specific test on the hardware, like memtest86 in ...
0
votes
1answer
48 views

Confused from x86 memory Layout of kernel loader

I am new to Linux kernel stuff and is reading about memory layout of Kernel loader but confused with below given diagram 0A0000 +------------------------+ | Reserved for BIOS | Do not ...
1
vote
1answer
69 views

Use Arduino programmer modes to upload code on virtual COM port

This question is related to Upload Arduino code on virtual serial port through Arduino IDE. The main problem is being able to upload code onto virtual COM port instead of using Arduino so I could take ...
2
votes
3answers
89 views

How do these particular assembler directives (using db and dw) cause a computer to reboot?

How can these 3 assembler directives cause a computer to reboot? db 0x0ea dw 0x0000 dw 0xffff I found this from http://fisnikhasani.com/building-your-own-bootloader/ As far as my understanding ...
0
votes
1answer
147 views

Upload Arduino code on virtual serial port through Arduino IDE

I downloaded several software that provide virtual COM ports. These COM ports do appear in the Device Manager and can be selected for upload from the Arduino IDE, menu Tools -> Serial Port -> COM3. It ...
0
votes
1answer
22 views

The A20 Line with JOS

The snippet code as following is enable A20 for JOS. It has a problem which confuse for me. The "$0xdf" is a command, not data. It should be out to port 0x64, which is command port. In fact, It port ...
0
votes
0answers
86 views

Execution hangs on call to C function from assembly

Two part question. I'm looking at bootloader assembly in combination with C. 1) Problem is that on call from assembly to linked C object everything stops. And hang. Even a function that only ...
0
votes
1answer
73 views

Typecasting an address to Function pointer

I have particular code which comes from u-boot, bootloader where address being typecast to function pointer but not sure for what purpose that's is being done void (*kernel)(bd_t *, ulong r4, ...
1
vote
0answers
154 views

Is my bootloader doing enough to boot Linux Image

I am new to bootloader and Linux kernel and been working on a project where we have to port underlying QNX kernel to Linux .The current modified bootloader code has support for booting QNX kernel.It ...
0
votes
1answer
108 views

What all necessary argument required to boot Linux kernel

I am new to linux kernel and Try to understand booting of Linux kernel from the point it loaded into RAM,I would like to know after Linux image loaded into RAM ,How control is passed to this image ...
2
votes
1answer
317 views

What is the difference between a Bootrom vs bootloader on ARM systems

I primarily come from an x86 system background where BIOS (Firmware) is responsible for loading a bootloader (like GRUB) from PowerON which in turn loads the OS. I now have been reading the equivalent ...
0
votes
0answers
49 views

Why Does the BIOS INT 0x19 Load Bootloader at “0x7C00”?

As we know the BIOS Interrupt (INT) 0x19 which searches for a boot signature (0xAA55). Loads and executes our bootloader at 0x7C00 if it found. My Question : Why 0x7C00? What is the reason ? How to ...
2
votes
1answer
115 views

Assembly boot loader working on virtual PC, not on real PC

hope someone can help, I'm getting quite frustrated! I can't find any further help online, mostly because my code works perfectly in virtualbox but not when booted on a real PC (from a USB pen drive ...
0
votes
1answer
80 views

PCI device check in assembly language

I have a simple program, that must read PCI configuration space (just for first PCI device). But it doesnt works. YASM: 18: warning: value doesnt fit in 8 bit fild 19: warning: value doesnt fit in 8 ...
4
votes
3answers
272 views

Why do we need a bootloader in an embedded device?

I'm working with ELinux kernel on ARM cortex-A8. I know how the bootloader works and what job it's doing. But i've got a question - why do we need bootloader, why was the bootloader born? Why we ...
5
votes
3answers
246 views

How do we Load Linux Image to appropiate location in Memory

We are trying to load a linux image into our DRAM at a specific location ,DRAM end address is 0x80000000 which we come to know from boot log which says "mem device ending address is 0x80000000".We ...
0
votes
1answer
178 views

Read a sector from hard drive with int 13h

I have a simple program. It must read first sector from hard drive (not mbr), and write it to the 0 sector (mbr). But it doesnt work. I think it is connected with wrong DAP. Thanks. [bits 16] ...
2
votes
2answers
144 views

Printing a string without OS

I have a simple program in x86 assembly language. It should print a string directly to the video memory without OS. [bits 16] [org 0x7c00] mov ax, 0x3 int 0x10 sdl mov ax, 0xb800 mov es,ax mov si, ...
2
votes
4answers
115 views

Bootloader Working

I am working on Uboot bootloader. I have some basic question about the functionality of Bootloader and the application it is going to handle: Q1: As per my knowledge, bootloader is used to download ...
0
votes
1answer
98 views

Adding touch sensitivity to Grub 2 boot loader?

I would like to know what libraries exist in Ubuntu 13.04 that would allow integration with Grub2 and more details on it (i.e. language, development stage, developers, etc.) or if this cannot be ...
0
votes
0answers
69 views

How to change Kernel entry address through vmlinux.lds

By default the Kernel boots from 0x100000 as it is defined in Kconfig file but have read somewhere we can also change the Kernel Entry address through vmlinux.lds file but not sure how?? Very first ...
0
votes
0answers
995 views

adb reboot-bootloader not booting ICS phone in fastboot mode

On doing adb reboot-bootloader on my ICS phone i am not able to enter into the fastboot mode. Instead the phone simply reboots. But i am able to enter fastboot using the volume key buttons. Rest of ...
0
votes
1answer
170 views

Retrieve the partition number of BootMgr on Windows Vista and later

I need to map Boot Manager to a partition number: Manufacturer Recovery partition = Partition 0 Boot manager = Partition 1 C:\ = Partition 2 D:\ = Partition 3 For mounted partitions, like C:\ ...
0
votes
1answer
49 views

No bootable medium found! error when loading custom OS

I am trying to load a very small, simple operating system I made in Virtualbox with a virtual floppy image, and I get the "FATAL: No bootable medium found!" error. The OS itself is just supposed to be ...
-2
votes
1answer
94 views

Whats the architecture behind signed / locked bootloaders (i.e. for android)? [closed]

i know that for example Motorola used to sign their bootloaders for der Milestone/Droids which made it quiet hard for the modding scene to apply their costum roms. My question is how does this work ...
1
vote
1answer
163 views

How to convert Linux Kernel Bin into ELF format

We have a Linux Kernel binary which is without elf header and our bootloader will be loading the Kernel image(earlier QNX kernel image has the elf header) based on calculation coming from ELF header ...
0
votes
2answers
117 views

Compare Last Line of File to String in Python

I'm a Python noob, and am trying to write a script to take two Intel hex files (one for my application code, one for a bootloader), strip the EOF record out of the first one, append the second file to ...
0
votes
1answer
52 views

Is there a way to show the list of tags passed to the kernel from the bootloader (ARM)?

I would like to see the list of tags (specifically ATAG_MEM) passed to the kernel from the bootloader. What is the best way to do it?
0
votes
2answers
182 views

NASM far jump / far call in real mode and ASM code conventions

I tried to make a bootloader the last few days and you can see the result by clicking the link below. Now I have two questions: In line 43 I have to use a jump with an absolute adress, but I want ...

1 2 3 4 5 7