0ae70393ba
* grub-core/kern/emu/hostdisk.c (grub_util_get_fd_sectors): Add argument name. All users updated. Print filename in error. (read_device_map): Print filename in error. * util/getroot.c (grub_guess_root_devices): Print filename in error. (grub_util_get_os_disk): Likewise. (grub_util_biosdisk_get_grub_dev): Likewise. (grub_util_check_block_device): Likewise. (grub_util_check_char_device): Likewise. (grub_make_system_path_relative_to_its_root): Likewise. * util/grub-editenv.c (create_envblk_file): Likewise. (open_envblk_file): Likewise. (write_envblk): Likewise. * util/grub-fstest.c (cmd_cp): Likewise. (cmd_cat): Likewise. (cmd_cmp): Likewise. * util/grub-menulst2cfg.c (main): Likewise. * util/grub-mkfont.c (write_font_ascii_bitmap): Likewise. (write_font_width_spec): Likewise. (write_font_pf2): Likewise. * util/grub-mkimage.c (generate_image): New argument outname. All users updated. Remove unreacheable message. (options): Unify messages. (help_filter): Likewise. * util/grub-mklayout.c (usage): Removed (unused). (main): Print filename in error. * util/grub-mkrescue.in: Fix wrong quoting. * util/grub-setup.c (setup): Print filename in error. * util/ieee1275/ofpath.c (vendor_is_ATA): Likewise. (check_sas): Likewise. * util/misc.c (grub_util_get_fp_size): Removed. (grub_util_get_image_size): Print filename in error. (grub_util_read_at): Removed. (grub_util_read_image): Print filename in error. (grub_util_load_image): Likewise. (grub_util_write_image_at): New argument filename. All users updated. Print filename in error. (grub_util_write_image): New argument filename. All users updated. Print filename in error. * util/raid.c (grub_util_raid_getmembers): Print filename in error. * util/resolve.c (grub_util_resolve_dependencies): Likewise.
127 lines
2.7 KiB
C
127 lines
2.7 KiB
C
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2010 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GRUB 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 GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <grub/legacy_parse.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <grub/util/misc.h>
|
|
#include <grub/misc.h>
|
|
#include <grub/i18n.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
FILE *in, *out;
|
|
char *entryname = NULL;
|
|
char *buf = NULL;
|
|
size_t bufsize = 0;
|
|
char *suffix = xstrdup ("");
|
|
int suffixlen = 0;
|
|
|
|
if (argc >= 2 && argv[1][0] == '-')
|
|
{
|
|
fprintf (stdout, _("Usage: %s [INFILE [OUTFILE]]\n"), argv[0]);
|
|
return 0;
|
|
}
|
|
|
|
if (argc >= 2)
|
|
{
|
|
in = fopen (argv[1], "r");
|
|
if (!in)
|
|
{
|
|
fprintf (stderr, _("cannot open `%s': %s"),
|
|
argv[1], strerror (errno));
|
|
return 1;
|
|
}
|
|
}
|
|
else
|
|
in = stdin;
|
|
|
|
if (argc >= 3)
|
|
{
|
|
out = fopen (argv[2], "w");
|
|
if (!out)
|
|
{
|
|
if (in != stdin)
|
|
fclose (in);
|
|
fprintf (stderr, _("cannot open `%s': %s"),
|
|
argv[2], strerror (errno));
|
|
return 1;
|
|
}
|
|
}
|
|
else
|
|
out = stdout;
|
|
|
|
while (1)
|
|
{
|
|
char *parsed;
|
|
|
|
if (getline (&buf, &bufsize, in) < 0)
|
|
break;
|
|
|
|
{
|
|
char *oldname = NULL;
|
|
char *newsuffix;
|
|
char *ptr;
|
|
|
|
for (ptr = buf; *ptr && grub_isspace (*ptr); ptr++);
|
|
|
|
oldname = entryname;
|
|
parsed = grub_legacy_parse (ptr, &entryname, &newsuffix);
|
|
if (newsuffix)
|
|
{
|
|
suffixlen += strlen (newsuffix);
|
|
suffix = xrealloc (suffix, suffixlen + 1);
|
|
strcat (suffix, newsuffix);
|
|
}
|
|
if (oldname != entryname && oldname)
|
|
fprintf (out, "}\n\n");
|
|
if (oldname != entryname)
|
|
{
|
|
char *escaped = grub_legacy_escape (entryname, strlen (entryname));
|
|
fprintf (out, "menuentry \'%s\' {\n", escaped);
|
|
free (escaped);
|
|
free (oldname);
|
|
}
|
|
}
|
|
|
|
if (parsed)
|
|
fprintf (out, "%s%s", entryname ? " " : "", parsed);
|
|
free (parsed);
|
|
parsed = NULL;
|
|
}
|
|
|
|
if (entryname)
|
|
fprintf (out, "}\n\n");
|
|
|
|
fwrite (suffix, 1, suffixlen, out);
|
|
|
|
free (buf);
|
|
free (suffix);
|
|
free (entryname);
|
|
|
|
if (in != stdin)
|
|
fclose (in);
|
|
if (out != stdout)
|
|
fclose (out);
|
|
|
|
return 0;
|
|
}
|