shell_banner.c

Go to the documentation of this file.
00001 /*
00002  * Copyright (C) 2006 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 <stdio.h>
00022 #include <console.h>
00023 #include <unistd.h>
00024 #include <config/general.h>
00025 #include <gpxe/keys.h>
00026 #include <gpxe/shell_banner.h>
00027 
00028 /** @file
00029  *
00030  * Shell startup banner
00031  *
00032  */
00033 
00034 /**
00035  * Print shell banner and prompt for shell entry
00036  *
00037  * @ret enter_shell             User wants to enter shell
00038  */
00039 int shell_banner ( void ) {
00040         int enter_shell = 0;
00041         int wait_count;
00042         int key;
00043 
00044         if ( BANNER_TIMEOUT <=  0 ) {
00045                 return enter_shell;
00046         }
00047 
00048         printf ( "\nPress Ctrl-B for the gPXE command line..." );
00049 
00050         /* Wait for key */
00051         for ( wait_count = 0 ; wait_count < BANNER_TIMEOUT ; wait_count++ ) {
00052                 if ( iskey() ) {
00053                         key = getchar();
00054                         if ( key == CTRL_B )
00055                                 enter_shell = 1;
00056                         break;
00057                 }
00058                 mdelay(100);
00059         }
00060 
00061         /* Clear the "Press Ctrl-B" line */
00062         printf ( "\r                                         \r" );
00063 
00064         return enter_shell;
00065 }

Generated on Tue Apr 6 20:01:06 2010 for gPXE by  doxygen 1.5.7.1