bf709d2564
1/ Makefile: the maximum size for boot2 is 7.5K not 7K, so don't complain until it reaches THAT size.. newfs leaves 8K and boot 1 is 512k. leaving 7.5K becasue the disklabel is considered to part of the boot2 file. [512 boot1][512 disklabel][ 7K boot2 code ] [boot1 file][ boot2 file ] 2/ Boot2.S: move the soring of the default name read from block 2 to AFTER clearing the BSS. 3/ boot.c: Move the parsing of the command line into the place it's called for clarity.. alsoi comment it a bit and clean it up a bit.. for some reason this seems ot have made it a little larger, but I can't work out why.. maybe bruce might have ideas? compensated for by shrinkage elsewhere.. the practical result of this is htat the default string can now contain args e.g. if you change the default string to have -gd then the machine will boot to the dgb debugger stub by default.. this is mostly useful with the nextboot utility.. as it now allows you to remotely force a machine to reboot into the debugger.
178 lines
3.9 KiB
ArmAsm
178 lines
3.9 KiB
ArmAsm
/*
|
|
* Mach Operating System
|
|
* Copyright (c) 1992, 1991 Carnegie Mellon University
|
|
* All Rights Reserved.
|
|
*
|
|
* Permission to use, copy, modify and distribute this software and its
|
|
* documentation is hereby granted, provided that both the copyright
|
|
* notice and this permission notice appear in all copies of the
|
|
* software, derivative works or modified versions, and any portions
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
*
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
|
|
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
*
|
|
* Carnegie Mellon requests users of this software to return to
|
|
*
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
* School of Computer Science
|
|
* Carnegie Mellon University
|
|
* Pittsburgh PA 15213-3890
|
|
*
|
|
* any improvements or extensions that they make and grant Carnegie Mellon
|
|
* the rights to redistribute these changes.
|
|
*
|
|
* from: Mach, Revision 2.2 92/04/04 11:35:26 rpd
|
|
* $Id: boot2.S,v 1.8 1996/07/12 05:25:46 bde Exp $
|
|
*/
|
|
|
|
#include "asm.h"
|
|
|
|
/* Conventional GDT indexes. */
|
|
#define BOOT_CS_INDEX 3
|
|
#define BOOT_CS16_INDEX 5
|
|
#define BOOT_DS_INDEX 4
|
|
|
|
#ifdef BDE_DEBUGGER
|
|
#define DB_CS_INDEX 14
|
|
#define DB_CS16_INDEX 15
|
|
#define DB_DS_INDEX 16
|
|
#define GDT_INDEX 17
|
|
#endif
|
|
|
|
/* Vector numbers. */
|
|
#define BREAKPOINT_VECTOR 3
|
|
#define DEBUG_VECTOR 1
|
|
|
|
/*
|
|
* boot2() -- second stage boot
|
|
* SP points to default string if found
|
|
*/
|
|
|
|
ENTRY(boot2)
|
|
data32
|
|
subl %eax, %eax
|
|
mov %cs, %ax
|
|
mov %ax, %ds
|
|
mov %ax, %es
|
|
data32
|
|
shll $4, %eax
|
|
|
|
/* fix up GDT entries for bootstrap */
|
|
#define FIXUP(gdt_index) \
|
|
addr32; \
|
|
movl %eax, EXT(Gdt)+(8*gdt_index)+2; /* actually movw %ax */ \
|
|
addr32; \
|
|
movb %bl, EXT(Gdt)+(8*gdt_index)+4
|
|
|
|
data32
|
|
shld $16, %eax, %ebx
|
|
FIXUP(BOOT_CS_INDEX)
|
|
FIXUP(BOOT_CS16_INDEX)
|
|
FIXUP(BOOT_DS_INDEX)
|
|
|
|
/* fix up GDT pointer */
|
|
data32
|
|
movl %eax, %ecx
|
|
data32
|
|
addl $ EXT(Gdt), %eax
|
|
addr32
|
|
data32
|
|
movl %eax, EXT(Gdtr)+2
|
|
|
|
#ifdef BDE_DEBUGGER
|
|
/* fix up GDT entry for GDT */
|
|
data32
|
|
shld $16, %eax, %ebx
|
|
FIXUP(GDT_INDEX)
|
|
|
|
/* fix up IDT pointer */
|
|
data32
|
|
addl $ EXT(Idt), %ecx
|
|
addr32
|
|
data32
|
|
movl %ecx, EXT(Idtr_prot)+2
|
|
|
|
/* %es = vector table segment for a while */
|
|
push %es
|
|
data32
|
|
subl %eax, %eax
|
|
mov %ax, %es
|
|
|
|
/* fix up GDT entries for bdb */
|
|
data32
|
|
movl $4*DEBUG_VECTOR, %esi
|
|
addr32
|
|
movl %es: 2(%esi), %eax /* actually movw to %ax */
|
|
data32
|
|
shll $4, %eax
|
|
data32
|
|
shld $16, %eax, %ebx
|
|
FIXUP(DB_CS_INDEX)
|
|
FIXUP(DB_CS16_INDEX)
|
|
FIXUP(DB_DS_INDEX)
|
|
|
|
/* Fetch entry points of bdb's protected mode trap handlers. These
|
|
* are stored at 2 before the corresponding entry points for real mode.
|
|
*/
|
|
data32
|
|
subl %ebx, %ebx
|
|
addr32
|
|
movl %es: (%esi), %ebx /* actually movw to %bx */
|
|
data32
|
|
subl %ecx, %ecx
|
|
addr32
|
|
movl %es: 4*(BREAKPOINT_VECTOR-DEBUG_VECTOR)(%esi), %ecx
|
|
/* actually movw to %cx */
|
|
|
|
/* %es = bdb segment for a while */
|
|
data32
|
|
shrl $4, %eax
|
|
mov %ax, %es
|
|
|
|
/* fix up IDT entries for bdb */
|
|
data32
|
|
subl $2, %ebx /* calculate EA to check it */
|
|
jb 1f /* give up if it would trap */
|
|
addr32
|
|
movl %es: (%ebx), %eax /* actually movw to %ax */
|
|
addr32
|
|
movl %eax, EXT(Idt)+8*DEBUG_VECTOR /* actually movw %ax */
|
|
1:
|
|
data32
|
|
subl $2, %ecx
|
|
jb 1f
|
|
addr32
|
|
movl %es: (%ecx), %eax /* actually movw to %ax */
|
|
addr32
|
|
movl %eax, EXT(Idt)+8*BREAKPOINT_VECTOR /* actually movw %ax */
|
|
1:
|
|
|
|
/* finished with groping in real mode segments */
|
|
pop %es
|
|
#endif /* BDE_DEBUGGER */
|
|
|
|
/* change to protected mode */
|
|
data32
|
|
call EXT(real_to_prot)
|
|
|
|
/* clear the bss */
|
|
movl $ EXT(edata), %edi /* no EXT(_edata) - krufty ld */
|
|
movl $ EXT(end), %ecx /* or EXT(_end) */
|
|
subl %edi, %ecx
|
|
subb %al, %al
|
|
rep
|
|
stosb
|
|
|
|
#ifdef NAMEBLOCK
|
|
movl %esp, EXT(dflt_name)
|
|
#endif
|
|
|
|
movzbl %dl, %edx /* discard head (%dh) and random high bits */
|
|
pushl %edx
|
|
call EXT(boot)
|
|
oops:
|
|
hlt
|
|
jmp oops
|