]>
git.saurik.com Git - apple/boot.git/blob - i386/boot1u/boot.c
2 * Copyright (c) 2002-2003 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Portions Copyright (c) 2002-2003 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 2.0 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
22 * @APPLE_LICENSE_HEADER_END@
26 #include <libsa/memory.h>
27 #include <saio_types.h>
28 #include <saio_internal.h>
36 #include <io_inline.h>
40 //#define BOOT_FILE "/foo"
41 #define BOOT_FILE "/usr/standalone/i386/boot"
44 //==========================================================================
49 extern char _DATA__bss__begin
, _DATA__bss__end
;
50 extern char _DATA__common__begin
, _DATA__common__end
;
52 bzero( &_DATA__bss__begin
,
53 (&_DATA__bss__end
- &_DATA__bss__begin
) );
55 bzero( &_DATA__common__begin
,
56 (&_DATA__common__end
- &_DATA__common__begin
) );
61 extern char chainbootdev
;
63 void boot(int biosdev
, void *partPtr
)
65 struct fdisk_part part
;
70 // Enable A20 gate before accessing memory above 1Mb.
73 biosdev
= biosdev
& 0xFF;
74 chainbootdev
= biosdev
;
76 /* Don't believe the passed-in partition table */
77 cc
= findUFSPartition(biosdev
, &part
);
79 printf("No UFS partition\n");
83 initUFSBVRef(&bv
, biosdev
, &part
);
85 gFSLoadAddress
= (void *)BOOT2_ADDR
;
86 cc
= UFSLoadFile(&bv
, BOOT_FILE
);
88 printf("Could not load %s\n", BOOT_FILE
);
91 // Return to execute booter