From b8e1348f2afd278a452cdca3dad32653d51057aa Mon Sep 17 00:00:00 2001 From: dtrg Date: Tue, 24 Apr 2007 19:25:00 +0000 Subject: [PATCH] Ensured that _errno is always defined. Rejigged the pc86 boot code so it doesn't always waste 510 bytes of memory. --- plat/linux386/boot.s | 3 ++- plat/pc86/boot.s | 37 ++++++++++++++++++++++++++----------- plat/pc86/descr | 4 ++-- 3 files changed, 30 insertions(+), 14 deletions(-) diff --git a/plat/linux386/boot.s b/plat/linux386/boot.s index 1fb7cc561..a86220816 100644 --- a/plat/linux386/boot.s +++ b/plat/linux386/boot.s @@ -60,6 +60,7 @@ EXIT: ! Some magic data. All EM systems need these. -.define .trppc, .ignmask +.define .trppc, .ignmask, _errno .comm .trppc, 4 .comm .ignmask, 4 +.comm _errno, 4 diff --git a/plat/pc86/boot.s b/plat/pc86/boot.s index 58666dbdf..d517c1e45 100644 --- a/plat/pc86/boot.s +++ b/plat/pc86/boot.s @@ -12,6 +12,19 @@ .sect .text +! ****** WARNING! ****** +! +! The PC boot sector requires a magic number at the end to signify that the +! disk is bootable. Unfortunately, the ACK assembler is a bit simple and we +! can't tell it to put the 0xAA55 at a particular address without writing our +! own custom binary generator. As a result, we need to manually insert just +! the right amount of padding in order to make this work. +! +! If you ever need to change the boot code, this needs adjusting. I recommend +! a hex editor. + +PADDING = 0xB9 + ! Some definitions. BOOT_SEGMENT = 0x07C0 ! Where we've been loaded @@ -255,10 +268,9 @@ finished: ! Push standard parameters onto the stack and go. - xor ax, ax - push ax ! argc - push ax ! argv - push ax ! envp + push envp ! envp + push argv ! argv + push 1 ! argc call __m_a_i_n ! fall through into the exit routine. @@ -291,25 +303,28 @@ loading_msg: .asciz '\n\rLoading...\n\r' halted_msg: .asciz '\n\rHalted.\n\r' running_msg: .asciz '\n\rRunning.\n\r' + ! The argv and env arrays. + +argv: .data2 exename, 0 +envp: .data2 0 +exename: .asciz 'pc86.img' + ! ...and we need this to fool the PC into booting our boot sector. - .align 510 + .space PADDING .data2 0xAA55 - -.define begtext,begdata,begbss -.define ERANGE,ESET,EHEAP,ECASE,EILLINS,EIDIVZ,EODDZ -.extern _end - ! Define symbols at the beginning of our various segments, so that we can find ! them. (Except .text, which has already been done.) +.define begtext, begdata, begbss .sect .data; begdata: .sect .rom; begrom: .sect .bss; begbss: ! Some magic data. All EM systems need these. -.define .trppc, .ignmask +.define .trppc, .ignmask, _errno .comm .trppc, 4 .comm .ignmask, 4 +.comm _errno, 4 diff --git a/plat/pc86/descr b/plat/pc86/descr index a338403d3..65b63a1f8 100644 --- a/plat/pc86/descr +++ b/plat/pc86/descr @@ -55,8 +55,8 @@ name led (.ocm:{TAIL}={PLATFORMDIR}/liboccam.a) \ (.ocm.b.mod.c.p:{TAIL}={PLATFORMDIR}/libc.a) \ {FLOATS?} \ - (.e:{TAIL}={PLATFORMDIR}/libsys.a \ - {PLATFORMDIR}/libem.a \ + (.e:{TAIL}={PLATFORMDIR}/libem.a \ + {PLATFORMDIR}/libsys.a \ {PLATFORMDIR}/libend.a) linker end -- 2.34.1