Operating System development: kernel, shell, networking, cross-compiling, etc.

learn more… | top users | synonyms

2
votes
1answer
30 views

Why do interrupt need to disable before switch 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?
0
votes
1answer
79 views

strange behaviour in interrupt handler

I am currently developing a kernel and run into a mysterious problem when implementing system call. I write the 0x80th interrupt handler like this: sys_call_s: pushad call sys_call popad ...
0
votes
1answer
54 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 ...
2
votes
1answer
72 views

Kernel Dev In assembly & C

I am trying to create a simple kernel using assembly and C on linux using bochs. The problem that each time I try calling the c code from the assembly code the emulator gives me an error and resets ...
1
vote
0answers
60 views

how can I jump to the higher half kernel

I am currently building a higher half kernel, my bootloader loads the kernel at physical address 0x100000(1M) and identity mapping has been set for 0-4MB. Here is the question: how can I jump to the ...
2
votes
1answer
114 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 ...
1
vote
4answers
190 views

Port GNU C Library to minimal hobby OS

So I have a minimal OS that doesn't do much. There's a bootloader, that loads a basic C kernel in 32-bit protected mode. How do I port in a C library so I can use things like printf? I'm looking to ...
5
votes
2answers
126 views

Self contained C routine to print string

I would like to make a self contained C function that prints a string. This would be part of an operating system, so I can't use stdio.h. How would I make a function that prints the string I pass to ...
1
vote
2answers
179 views

Does booting in EFI mode mean that I shall not have access to BIOS interrupts?

I am attempting to develop a simple OS. I have done some assembly programs before and have had to use INT 10h to display characters to the screen. I understand that UEFI has support for legacy BIOS ...
11
votes
3answers
269 views

Triple fault on stack in C code

I am writing a toy kernel for learning purposes, and I am having a bit of trouble with it. I have made a simple bootloader that loads a segment from a floppy disk (which is written in 32 bit code), ...
11
votes
1answer
306 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, ...
0
votes
3answers
165 views

Cycle accurate simulation of x86 hardware

Can somebody enlighten me how does CAS software like http://www.ptlsim.org/ work? How do they achieve cycle accuracy if there is neither information how many cycles are used per instruction nor CPU ...
3
votes
2answers
199 views

Include contents of char array in flat binary file

I am using flat binary files as external programs for my OS. When I compile them, like so: gcc -Wall ctest.c -o ctest.bin -nostdlib -Wl,-Ttext=0x8000,-nostdlib -masm=intel objcopy -O binary -j .text ...
0
votes
1answer
167 views

Running code at memory location in my OS

I am developing an OS in C (and some assembly of course) and now I want to allow it to load/run external (placed in the RAM-disk) programs. I have assembled a test program as raw machine code with ...
1
vote
1answer
134 views

Why Enable/Disable A20 Line [closed]

I have a question about the A20 gate. I read an article about it saying that the mechanism exists to solve problems with address "wraparound" that appeared when newer CPUs got a 32-bit address bus ...
2
votes
1answer
78 views

Can someone help understand why this prints the wrong file name?

I was writing a bootsector based on a FAT12 filesystem. After a while I came up with a problem. .FindBootSectorTwo: push SI push DI push CX mov CX, 11 mov SI, BootloaderSTG2 ...
0
votes
2answers
83 views

Compute The Next Cluster

Recently I read some nice tutorials about OS development on BrokenThorn : it's a nice OSDev series. I have some trouble to understand the idea of "computing the next cluster" when I want to load the ...
1
vote
1answer
92 views

fixed sector loading of bootloader (LILO, GRUB, custom)

I've been looking at LILO bootsect.s and GRUB stage1.s. LILO loads things(or something) from a specific hard-coded sector; it doesn't use some reserved bytes that can be patched up on installation. I ...
0
votes
1answer
116 views

own OS - read out cd rom directory content [closed]

I want to programming my own "learning" mini Operating System. So I switch fro 16 Bit to 32 Bit protected mode after boot, doing GDT stuff, and so on. Now, I would read out the CD-Rom contents ...
30
votes
5answers
1k views

Does a LibC os exist?

I remember hearing about an embeddable OS that is essentially just libc (maybe it had support for c++). It didn't have a kernel, pipes or any of the other stuff you expect from an os. I tried looking ...
1
vote
3answers
248 views

Bootloader crash

I'm currently developing my bootloader, but I have problem. I use Bochs to test bootloader, I compile bootloader and make disk image with: rm disk.bin rm boot.bin rm post.bin nasm bootloader.asm -o ...
0
votes
1answer
123 views

GPF after far jump to protected mode

After several weeks of work using GRUB as my bootloader I decided that I should roll my own so I can understand how they work. I found Brokenthorn's tutorials on the internet (currently on ...
5
votes
2answers
266 views

Writing an OS with UEFI

I haven't been coding much lately due to school but I've decided I want to start working on OS development again. Recently however I've heard stuff about EFI as the replacement to BIOS. I want to ...
0
votes
0answers
181 views

conflicting types for 'gettimeofday' while building newlib for cross compiler

while trying to build newlib 1.20.0... i followed this tutorial http://wiki.osdev.org/OS_Specific_Toolchain#newlib.2Flibc.2Fsys.2Fmyos but when trying to build newlib i get the following error: ...
0
votes
2answers
107 views

MP Specfication for AMD,how to use code to boot multiprocessors as regards to AMD

everyone~ I am trying to write an os that support multiprocessor,however I don't know how to bootstrap multiprocessor for AMD,and I have searched the AMD homepage to find the MP Specificaton ,but ...
2
votes
2answers
97 views

Does pte modifying go through the same page table as usual memory access do?

I know that usual memory access will go through page tables to do virtual address to physical address translation. But what about pte modifying? Say OS want to modify a process's page table entry, ...
0
votes
0answers
120 views

Cross Compiling GCC generating invalid assembly

I am cross compiling a mixed c and c++ program, and when I call i586-elf-gcc -o $OBJK/isr.o -c isr.c -Wall -Wextra -nostdlib -fno-builtin -nostartfiles -nodefaultlibs -D_Processor_is_x86 ...
1
vote
1answer
240 views

Qemu hanging in main system call

I was working on the Pintos project . And while I was implementing a priority donation mechanism for the proper priority scheduling , QEMU emulator just hung up (I have attached an image and the dump ...
2
votes
1answer
289 views

Setting start address to execute raw binary file

Bootloader is seperated into 2 stages. First stage is written in assembly and only loads second stage, second stage is in C. Stage1 loads code in C to address 0x0500:0, and jumps there. Stage2 have to ...
3
votes
1answer
152 views

Compiling and linking C code without any additional data in output file

I am asking for help by professionals because of lack of my knowledge in using GCC and ld.I'm writing OS for educational purposes, and i have a problem with compiling and linking C code. To be honest, ...
0
votes
2answers
414 views

Is there any free application that can burn a bootloader to a bootable CD? [closed]

I have a bootloader that I want to burn to a bootable cd. Is there any free application that can do it. The code for the bootloader is: BITS 16 start: mov ax, 07C0h add ax, 288 mov ...
3
votes
2answers
294 views

Simple C Kernel char Pointers Aren't Working

I am trying to make a simple kernel using C. Everything loads and works fine, and I can access the video memory and display characters, but when i try to implement a simple puts function for some ...
2
votes
3answers
158 views

Location of variables in C

I'm trying to understand how C allocates memory to global variables. I'm working on a simple Kernel. So far it can't do much more than print to screen and enable interrupts. I'm now working on a ...
2
votes
3answers
270 views

Assembly - Read next sector of a virtual disk

As any programmer in the world at least once in his/her life, I am trying to create my "revolutionary", the new and only one operating system. :D Well, I am using a virtual emulator (Oracle VM ...
1
vote
2answers
357 views

Opening a file in Assembly Language independent of OS

I have been trying to figure out how to open a file from the hard drive in assembly. I want to do this without using DOS interrupts or anything that would require an operating system, because I am ...
1
vote
1answer
198 views

Task switching using a queue

i'm developing my own hobby os, and now i'm stuck with a problem on the scheduler/task switching. I planned to use a FIFO queue as structure to hold processes. I implemented it using linked list. I ...
4
votes
1answer
460 views

Problems with simple C bootstrap/kernel

I've been a C/C++ programmer for some time now and recently decided to delve into trying to make my own very very simple OS. I wrote (/copied, but I understand the code) some basic ASM that ...
1
vote
1answer
743 views

Built a GCC cross compiler toolchain successfully. How do I setup the enviornment variables properly?

I do not know if this is the right place on how to setup the enviornment variables for a cross compiling toolchain. The toolchain's purpose is to develop OSes. I am using Ubuntu 12.04 LTS. The problem ...
2
votes
0answers
104 views

Change operating mode of ATA controller

I am writing a simple ATA driver for a hobby OS. I have SATA disk for tests and what I currently want to do is change the operating mode of ATA controller from AHCI to IDE emulation. I know it can be ...
3
votes
3answers
907 views

Confused with CMPSB instruction

I have been looking at this code and I'm confused about the rep cmpsb line. .LOOP: push cx mov cx, 0x000B ; eleven character name mov si, ...
11
votes
2answers
501 views

(Writing kernel) How do I modify the interrupt descriptor table?

I am writing a small kernel just to poke around the low level stuff a bit. Right now, it boots in Virtual Box and I can display text to the screen, allocate some memory, and other really basic ...
1
vote
1answer
116 views

entry() get into the different address from the entry point I set in the Elf

Recently I'm learning about the OS. And I want to write a simple bootloader, which change the real mode to protect mode and then load the simple kernel. But I can't figure out the entry address ...
1
vote
0answers
132 views

Building a phone OS: Where to start? [closed]

Kind of carries on from this discussion. If I wanted to build a phone OS based on a linux kernel, with today's tech standards, where would one start? I've looked around but there seems to be very ...
2
votes
1answer
531 views

Identifying faulting address on General Protection Fault (x86)

I am trying to write a ISR for the General Protection Fault (GP#13) on x86. I am unable to figure out from the INTEL docs as to how I can find out the faulting address causing the exception. I know ...
4
votes
1answer
958 views

autotools: C compiler cannot create executables

I am building an x86_64-elf kernel on OS X. My build system is autotools. I successfully compiled gcc to cross-compile for x86_64-elf on OS X. When I run the configure script generated from autotools ...
-1
votes
2answers
169 views

Is it possible to write an OS in java? [closed]

We know Windows Linux Mac OS is written by C/C++ Do you think it is possible that someday an OS is written by JAVA?
2
votes
3answers
272 views

Loading SSE registers

I'm working on homework project for OS development class. One task is to save context of SSE registers upon interrupt. Now, saving and restoring context is easy (fxsave/fxsave). But I have problem ...
0
votes
1answer
145 views

Operating System debugger for Ubuntu 11.10

I've been doing operating system development (not building a Linux kernel), and have gotten to the point where I need a debugger, for my latest OS. I've tried Bochs (under my Win 7 partition), but ...
2
votes
2answers
586 views

Where do memory mapped I/O addreses come from?

I am messing around with some hobbyist OS development, and I am a little confused on memory mapped I/O addresses. I understand the whole memory mapped I/O concept, but I am trying to figure out how ...
2
votes
2answers
110 views

Implementing a runtime library loader

I've been contemplating on writing a dlopen(), dlsym(), dlclose(), dlerror(), like library for one of my embedded projects where not even a C library exists (for which I already wrote my own C/C++ ...

1 2 3