~ubuntu-branches/debian/stretch/grub2/stretch

« back to all changes in this revision

Viewing changes to util/sparc64/ieee1275/grub-setup.c

Tags: upstream-1.98+20100705
ImportĀ upstreamĀ versionĀ 1.98+20100705

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
  grub_uint32_t len;
91
91
} __attribute__ ((packed));
92
92
 
93
 
void
94
 
grub_putchar (int c)
 
93
void 
 
94
grub_xputs_real (const char *str)
95
95
{
96
 
  putchar (c);
 
96
  fputs (str, stdout);
97
97
}
98
98
 
 
99
void (*grub_xputs) (const char *str) = grub_xputs_real;
 
100
 
99
101
int
100
102
grub_getkey (void)
101
103
{
408
410
Set up images to boot from DEVICE.\n\
409
411
DEVICE must be a GRUB device (e.g. `(hd0,1)').\n\
410
412
\n\
 
413
You should not normally run %s directly.  Use grub-install instead.\n\
 
414
\n\
411
415
  -b, --boot-image=FILE   use FILE as the boot image [default=%s]\n\
412
416
  -c, --core-image=FILE   use FILE as the core image [default=%s]\n\
413
417
  -d, --directory=DIR     use GRUB files in the directory DIR [default=%s]\n\
418
422
  -v, --verbose           print verbose messages\n\
419
423
\n\
420
424
Report bugs to <%s>.\n\
421
 
", program_name,
 
425
", program_name, program_name,
422
426
            DEFAULT_BOOT_FILE, DEFAULT_CORE_FILE, DEFAULT_DIRECTORY,
423
427
            DEFAULT_DEVICE_MAP, PACKAGE_BUGREPORT);
424
428