efidrvprefix.c

Go to the documentation of this file.
00001 /*
00002  * Copyright (C) 2009 Michael Brown <mbrown@fensystems.co.uk>.
00003  *
00004  * This program is free software; you can redistribute it and/or
00005  * modify it under the terms of the GNU General Public License as
00006  * published by the Free Software Foundation; either version 2 of the
00007  * License, or any later version.
00008  *
00009  * This program is distributed in the hope that it will be useful, but
00010  * WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012  * General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU General Public License
00015  * along with this program; if not, write to the Free Software
00016  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00017  */
00018 
00019 FILE_LICENCE ( GPL2_OR_LATER );
00020 
00021 #include <stdlib.h>
00022 #include <gpxe/init.h>
00023 #include <gpxe/efi/efi.h>
00024 
00025 /**
00026  * EFI entry point
00027  *
00028  * @v image_handle      Image handle
00029  * @v systab            System table
00030  * @ret efirc           EFI return status code
00031  */
00032 EFI_STATUS EFIAPI _start ( EFI_HANDLE image_handle,
00033                            EFI_SYSTEM_TABLE *systab ) {
00034         EFI_STATUS efirc;
00035 
00036         /* Initialise EFI environment */
00037         if ( ( efirc = efi_init ( image_handle, systab ) ) != 0 )
00038                 return efirc;
00039 
00040         /* Initialise gPXE environment */
00041         initialise();
00042         startup();
00043 
00044         /* Install SNP driver and return */
00045         return RC_TO_EFIRC ( efi_snp_install () );
00046 }

Generated on Tue Apr 6 20:00:51 2010 for gPXE by  doxygen 1.5.7.1