Home | History | Annotate | Line # | Download | only in common
bootxx.c revision 1.4.8.1
      1  1.4.8.1  wrstuden /* $NetBSD: bootxx.c,v 1.4.8.1 1999/12/27 18:31:29 wrstuden Exp $ */
      2      1.1       cgd 
      3      1.1       cgd /*
      4      1.1       cgd  * Copyright (c) 1999 Christopher G. Demetriou.  All rights reserved.
      5      1.1       cgd  *
      6      1.1       cgd  * Redistribution and use in source and binary forms, with or without
      7      1.1       cgd  * modification, are permitted provided that the following conditions
      8      1.1       cgd  * are met:
      9      1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     10      1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     11      1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     13      1.1       cgd  *    documentation and/or other materials provided with the distribution.
     14      1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     15      1.1       cgd  *    must display the following acknowledgement:
     16      1.1       cgd  *      This product includes software developed by Christopher G. Demetriou
     17      1.1       cgd  *	for the NetBSD Project.
     18      1.1       cgd  * 4. The name of the author may not be used to endorse or promote products
     19      1.1       cgd  *    derived from this software without specific prior written permission
     20      1.1       cgd  *
     21      1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22      1.1       cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23      1.1       cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24      1.1       cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25      1.1       cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26      1.1       cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27      1.1       cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28      1.1       cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29      1.1       cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30      1.1       cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31      1.1       cgd  */
     32      1.1       cgd 
     33      1.1       cgd /*
     34      1.1       cgd  * Copyright (c) 1992, 1993
     35      1.1       cgd  *	The Regents of the University of California.  All rights reserved.
     36      1.1       cgd  *
     37      1.1       cgd  * This code is derived from software contributed to Berkeley by
     38      1.1       cgd  * Ralph Campbell.
     39      1.1       cgd  *
     40      1.1       cgd  * Redistribution and use in source and binary forms, with or without
     41      1.1       cgd  * modification, are permitted provided that the following conditions
     42      1.1       cgd  * are met:
     43      1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     44      1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     45      1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     46      1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     47      1.1       cgd  *    documentation and/or other materials provided with the distribution.
     48      1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     49      1.1       cgd  *    must display the following acknowledgement:
     50      1.1       cgd  *	This product includes software developed by the University of
     51      1.1       cgd  *	California, Berkeley and its contributors.
     52      1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     53      1.1       cgd  *    may be used to endorse or promote products derived from this software
     54      1.1       cgd  *    without specific prior written permission.
     55      1.1       cgd  *
     56      1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     57      1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     58      1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     59      1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     60      1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     61      1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     62      1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     63      1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     64      1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     65      1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     66      1.1       cgd  * SUCH DAMAGE.
     67      1.1       cgd  *
     68      1.1       cgd  *	@(#)boot.c	8.1 (Berkeley) 6/10/93
     69      1.1       cgd  */
     70      1.1       cgd 
     71      1.1       cgd #include <lib/libsa/stand.h>
     72      1.1       cgd #include <lib/libkern/libkern.h>
     73      1.1       cgd 
     74      1.1       cgd #include <sys/param.h>
     75      1.1       cgd #include <sys/exec.h>
     76      1.1       cgd #include <sys/exec_ecoff.h>
     77      1.1       cgd 
     78      1.1       cgd #include <machine/autoconf.h>
     79      1.1       cgd #include <machine/prom.h>
     80      1.1       cgd #include <machine/rpb.h>
     81      1.1       cgd 
     82      1.1       cgd #include <machine/pte.h>
     83      1.1       cgd 
     84      1.1       cgd #include "../common/common.h"
     85      1.1       cgd 
     86      1.2       cgd void main(void);
     87      1.1       cgd 
     88      1.1       cgd void
     89      1.2       cgd main(void)
     90      1.1       cgd {
     91      1.1       cgd         struct stat sb;
     92      1.1       cgd 	const char *reason;
     93      1.1       cgd 	int fd;
     94      1.1       cgd 
     95      1.1       cgd 	/* Init prom callback vector. */
     96      1.1       cgd 	init_prom_calls();
     97      1.1       cgd 
     98      1.4       cgd         putstr("\nNetBSD/alpha " NETBSD_VERS " " BOOTXX_FS_NAME " Primary Bootstrap\n");
     99      1.1       cgd 
    100      1.1       cgd         if (!booted_dev_open()) {
    101      1.1       cgd 		reason = "Can't open boot device.";
    102      1.1       cgd                 goto fail;
    103      1.1       cgd         }
    104      1.1       cgd 
    105      1.1       cgd 	fd = open("boot", 0);
    106      1.1       cgd 	if (fd == -1 || (fstat(fd, &sb) == -1)) {
    107      1.1       cgd 		reason = "Can't open /boot.";
    108      1.1       cgd 		goto failclose;
    109      1.1       cgd 	}
    110      1.1       cgd 
    111      1.1       cgd 	if (sb.st_size > SECONDARY_MAX_LOAD) {
    112      1.1       cgd 		reason = "/boot too large.";
    113      1.1       cgd 		goto failclose;
    114      1.1       cgd 	}
    115      1.1       cgd 
    116      1.1       cgd 	if (read(fd, (void*)SECONDARY_LOAD_ADDRESS, sb.st_size) != sb.st_size) {
    117      1.1       cgd 		reason = "/boot load failed.";
    118      1.1       cgd 		goto failclose;
    119      1.1       cgd 	}
    120      1.1       cgd 
    121      1.1       cgd 	putstr("Jumping to entry point...\n");
    122      1.1       cgd 	(*((void(*)(int))SECONDARY_LOAD_ADDRESS))(booted_dev_fd);
    123      1.1       cgd 
    124      1.1       cgd 	reason = "Secondary boot returned!";
    125      1.1       cgd failclose:
    126      1.1       cgd 	booted_dev_close();
    127      1.1       cgd fail:
    128      1.1       cgd 	putstr(reason);
    129      1.1       cgd 	putstr("\n\nPRIMARY BOOTSTRAP FAILED!\n");
    130      1.1       cgd }
    131