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 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>
39 make_device_map (const char *device_map
, int floppy_disks
)
45 auto int NESTED_FUNC_ATTR
process_device (const char *name
, int is_floppy
);
47 int NESTED_FUNC_ATTR
process_device (const char *name
, int is_floppy
)
49 grub_util_emit_devicemap_entry (fp
, (char *) name
,
50 is_floppy
, &num_fd
, &num_hd
);
54 if (strcmp (device_map
, "-") == 0)
57 fp
= fopen (device_map
, "w");
60 grub_util_error ("cannot open %s", device_map
);
62 grub_util_iterate_devices (process_device
, floppy_disks
);
68 static struct option options
[] =
70 {"device-map", required_argument
, 0, 'm'},
71 {"probe-second-floppy", no_argument
, 0, 's'},
72 {"no-floppy", no_argument
, 0, 'n'},
73 {"help", no_argument
, 0, 'h'},
74 {"version", no_argument
, 0, 'V'},
75 {"verbose", no_argument
, 0, 'v'},
84 "Try ``grub-mkdevicemap --help'' for more information.\n");
87 Usage: grub-mkdevicemap [OPTION]...\n\
89 Generate a device map file automatically.\n\
91 -n, --no-floppy do not probe any floppy drive\n\
92 -s, --probe-second-floppy probe the second floppy drive\n\
93 -m, --device-map=FILE use FILE as the device map [default=%s]\n\
94 -h, --help display this message and exit\n\
95 -V, --version print version information and exit\n\
96 -v, --verbose print verbose messages\n\
98 Report bugs to <%s>.\n\
100 DEFAULT_DEVICE_MAP
, PACKAGE_BUGREPORT
);
106 main (int argc
, char *argv
[])
109 int floppy_disks
= 1;
111 progname
= "grub-mkdevicemap";
113 /* Check for options. */
116 int c
= getopt_long (argc
, argv
, "snm:r:hVv", options
, 0);
127 dev_map
= xstrdup (optarg
);
143 printf ("%s (%s) %s\n", progname
, PACKAGE_NAME
, PACKAGE_VERSION
);
156 make_device_map (dev_map
? : DEFAULT_DEVICE_MAP
, floppy_disks
);