~jonathank89/burg/burg-percise

« back to all changes in this revision

Viewing changes to commands/lsmmap.c

merge mainline into mips

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <grub/dl.h>
21
21
#include <grub/misc.h>
22
22
#include <grub/command.h>
 
23
#include <grub/i18n.h>
23
24
 
24
25
static grub_err_t
25
26
grub_cmd_lsmmap (grub_command_t cmd __attribute__ ((unused)),
43
44
GRUB_MOD_INIT(lsmmap)
44
45
{
45
46
  cmd = grub_register_command ("lsmmap", grub_cmd_lsmmap,
46
 
                               0, "List memory map provided by firmware.");
 
47
                               0, N_("List memory map provided by firmware."));
47
48
}
48
49
 
49
50
GRUB_MOD_FINI(lsmmap)