2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2003,2004,2005,2006,2007,2008 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
24 #include <sys/types.h>
28 #include <grub/setjmp.h>
30 #include <grub/util/hostdisk.h>
32 #include <grub/util/console.h>
33 #include <grub/util/misc.h>
34 #include <grub/kernel.h>
35 #include <grub/normal.h>
36 #include <grub/util/getroot.h>
38 #include <grub/partition.h>
40 #include <grub_emu_init.h>
42 /* Used for going back to the main function. */
43 static jmp_buf main_env
;
45 /* Store the prefix specified by an argument. */
46 static char *prefix
= 0;
49 grub_arch_modules_addr (void)
55 grub_arch_dl_check_header (void *ehdr
)
59 return GRUB_ERR_BAD_MODULE
;
63 grub_arch_dl_relocate_symbols (grub_dl_t mod
, void *ehdr
)
68 return GRUB_ERR_BAD_MODULE
;
74 longjmp (main_env
, 1);
79 #ifdef GRUB_MACHINE_PCBIOS
80 int no_apm
__attribute__ ((unused
))
88 grub_machine_init (void)
93 grub_machine_set_prefix (void)
95 grub_env_set ("prefix", prefix
);
101 grub_machine_fini (void)
103 grub_console_fini ();
107 read_command_list (void)
112 static struct option options
[] =
114 {"root-device", required_argument
, 0, 'r'},
115 {"device-map", required_argument
, 0, 'm'},
116 {"directory", required_argument
, 0, 'd'},
117 {"hold", optional_argument
, 0, 'H'},
118 {"help", no_argument
, 0, 'h'},
119 {"version", no_argument
, 0, 'V'},
120 {"verbose", no_argument
, 0, 'v'},
129 "Try ``grub-emu --help'' for more information.\n");
132 "Usage: grub-emu [OPTION]...\n"
136 " -r, --root-device=DEV use DEV as the root device [default=guessed]\n"
137 " -m, --device-map=FILE use FILE as the device map [default=%s]\n"
138 " -d, --directory=DIR use GRUB files in the directory DIR [default=%s]\n"
139 " -v, --verbose print verbose messages\n"
140 " -H, --hold[=SECONDS] wait until a debugger will attach\n"
141 " -h, --help display this message and exit\n"
142 " -V, --version print version information and exit\n"
144 "Report bugs to <%s>.\n", DEFAULT_DEVICE_MAP
, DEFAULT_DIRECTORY
, PACKAGE_BUGREPORT
);
150 main (int argc
, char *argv
[])
153 char *dir
= DEFAULT_DIRECTORY
;
154 char *dev_map
= DEFAULT_DEVICE_MAP
;
155 volatile int hold
= 0;
158 progname
= "grub-emu";
160 while ((opt
= getopt_long (argc
, argv
, "r:d:m:vH:hV", options
, 0)) != -1)
176 hold
= (optarg
? atoi (optarg
) : -1);
181 printf ("%s (%s) %s\n", progname
, PACKAGE_NAME
, PACKAGE_VERSION
);
189 fprintf (stderr
, "Unknown extra argument `%s'.\n", argv
[optind
]);
193 /* Wait until the ARGS.HOLD variable is cleared by an attached debugger. */
194 if (hold
&& verbosity
> 0)
195 printf ("Run \"gdb %s %d\", and set ARGS.HOLD to zero.\n",
196 progname
, (int) getpid ());
205 signal (SIGINT
, SIG_IGN
);
206 grub_console_init ();
208 /* XXX: This is a bit unportable. */
209 grub_util_biosdisk_init (dev_map
);
213 /* Make sure that there is a root device. */
216 char *device_name
= grub_guess_root_device (dir
);
218 grub_util_error ("cannot find a device for %s.\n", dir
);
220 root_dev
= grub_util_get_grub_dev (device_name
);
223 grub_util_info ("guessing the root device failed, because of `%s'",
225 grub_util_error ("Cannot guess the root device. Specify the option ``--root-device''.");
229 dir
= grub_get_prefix (dir
);
230 prefix
= xmalloc (strlen (root_dev
) + 2 + strlen (dir
) + 1);
231 sprintf (prefix
, "(%s)%s", root_dev
, dir
);
235 if (setjmp (main_env
) == 0)
240 grub_machine_fini ();