1 /* grub-mkdevicemap.c - make a device map file automatically */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2007,2008,2009,2010 Free Software Foundation, Inc.
6 * GRUB is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
26 #include <sys/types.h>
32 #include <grub/util/misc.h>
33 #include <grub/util/deviceiter.h>
34 #include <grub/i18n.h>
42 make_device_map (const char *device_map
, int floppy_disks
)
48 auto int NESTED_FUNC_ATTR
process_device (const char *name
, int is_floppy
);
50 int NESTED_FUNC_ATTR
process_device (const char *name
, int is_floppy
)
52 grub_util_emit_devicemap_entry (fp
, (char *) name
,
53 is_floppy
, &num_fd
, &num_hd
);
57 if (strcmp (device_map
, "-") == 0)
60 fp
= fopen (device_map
, "w");
63 grub_util_error ("cannot open %s", device_map
);
65 grub_util_iterate_devices (process_device
, floppy_disks
);
71 static struct option options
[] =
73 {"device-map", required_argument
, 0, 'm'},
74 {"probe-second-floppy", no_argument
, 0, 's'},
75 {"no-floppy", no_argument
, 0, 'n'},
76 {"help", no_argument
, 0, 'h'},
77 {"version", no_argument
, 0, 'V'},
78 {"verbose", no_argument
, 0, 'v'},
87 "Try `%s --help' for more information.\n", program_name
);
90 Usage: %s [OPTION]...\n\
92 Generate a device map file automatically.\n\
94 -n, --no-floppy do not probe any floppy drive\n\
95 -s, --probe-second-floppy probe the second floppy drive\n\
96 -m, --device-map=FILE use FILE as the device map [default=%s]\n\
97 -h, --help display this message and exit\n\
98 -V, --version print version information and exit\n\
99 -v, --verbose print verbose messages\n\
101 Report bugs to <%s>.\n\
103 DEFAULT_DEVICE_MAP
, PACKAGE_BUGREPORT
);
109 main (int argc
, char *argv
[])
112 int floppy_disks
= 1;
114 set_program_name (argv
[0]);
116 grub_util_init_nls ();
118 /* Check for options. */
121 int c
= getopt_long (argc
, argv
, "snm:r:hVv", options
, 0);
132 dev_map
= xstrdup (optarg
);
148 printf ("%s (%s) %s\n", program_name
, PACKAGE_NAME
, PACKAGE_VERSION
);
161 make_device_map (dev_map
? : DEFAULT_DEVICE_MAP
, floppy_disks
);