1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
/*
* Copyright (C) 2001-2003 Hewlett-Packard Co.
* Contributed by Stephane Eranian <eranian@hpl.hp.com>
*
* This file is part of the ELILO, the EFI Linux boot loader.
*
* ELILO is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* ELILO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ELILO; see the file COPYING. If not, write to the Free
* Software Foundation, 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* Please check out the elilo.txt for complete documentation on how
* to use this program.
*/
#include <efi.h>
#include <efilib.h>
#include "elilo.h"
#include "config.h"
#include "private.h"
#include "sysdeps.h"
#include "getopt.h"
typedef struct {
CHAR16 fpswa[FILENAME_MAXLEN];
CHAR16 cmd_fpswa[FILENAME_MAXLEN];
UINTN allow_relocation;
} ia64_global_config_t;
#define ia64_opt_offsetof(option) (&((sys_img_options_t *)(0x0))->option)
static ia64_global_config_t ia64_gconf;
/*
* No IA-64 specific options at this point
* The last entry in each table MUST be use the OPT_NULL type to terminate
* the chain.
*/
config_option_t sysdeps_global_options[]={
{OPT_FILE, OPT_GLOBAL, L"fpswa", NULL, NULL, ia64_gconf.fpswa},
{OPT_BOOL, OPT_GLOBAL, L"relocatable", NULL, NULL, &ia64_gconf.allow_relocation},
};
config_option_t sysdeps_image_options[]={
{OPT_BOOL, OPT_IMAGE_SYS, L"relocatable", NULL, NULL, ia64_opt_offsetof(allow_relocation)},
};
/*
* IA-64 operations that need to be done only once and just before
* entering the main loop of the loader
* Return:
* 0 if sucessful
* -1 otherwise (will abort execution)
*/
INTN
sysdeps_preloop_actions(EFI_HANDLE dev, CHAR16 **argv, INTN argc, INTN index, EFI_HANDLE image)
{
/*
* we have separate string to make sure that the command line take precedence over
* the config file
*/
if (ia64_gconf.cmd_fpswa[0] != CHAR_NULL) {
check_fpswa(image, dev, ia64_gconf.cmd_fpswa);
} else if (ia64_gconf.fpswa[0] != CHAR_NULL)
check_fpswa(image, dev, ia64_gconf.fpswa);
else
check_fpswa(image, dev, NULL);
return 0;
}
/*
* Return:
* 1: if image or global configuration allows relocation
* 0: otherwise
*
* It is written has a function rather than a macro to avoid
* exposing config data structure to the rest of the code in ia64
*/
INTN
ia64_can_relocate(VOID)
{
return ia64_gconf.allow_relocation == TRUE
|| (elilo_opt.sys_img_opts && elilo_opt.sys_img_opts->allow_relocation ==TRUE) ? 1 : 0;
}
#define IA64_CMDLINE_OPTIONS L"rF:"
CHAR16 *
sysdeps_get_cmdline_opts(VOID)
{
return IA64_CMDLINE_OPTIONS;
}
INTN
sysdeps_getopt(INTN c, INTN optind, CHAR16 *optarg)
{
INTN ret = 0; /* let's be optimistic ! */
/*
* XXX: for now these command line options have to be global
*/
switch(c) {
case L'r':
ia64_gconf.allow_relocation = 1;
break;
case L'F':
if (StrLen(Optarg) >= FILENAME_MAXLEN) {
Print(L"FPSWA filename is limited to %d characters\n", FILENAME_MAXLEN);
return -1;
}
StrCpy(ia64_gconf.cmd_fpswa, Optarg);
break;
default:
ret = -1;
}
return ret;
}
VOID
sysdeps_print_cmdline_opts(VOID)
{
Print(L"-r kernel image can be relocated if load address inexistent\n");
Print(L"-F file name of a specific FPSWA EFI driver to load\n");
}
INTN
sysdeps_register_options(VOID)
{
INTN ret;
ret = register_config_options(sysdeps_global_options,
sizeof(sysdeps_global_options)/sizeof(config_option_t),
OPTIONS_GROUP_GLOBAL);
if (ret == -1 ) return ret;
ret = register_config_options(sysdeps_image_options,
sizeof(sysdeps_image_options)/sizeof(config_option_t),
OPTIONS_GROUP_IMAGE);
return ret;
}
|