~jonathank89/burg/burg-percise

« back to all changes in this revision

Viewing changes to commands/cmp.c

merge mainline into mips

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* cmd.c - command to cmp an operating system */
2
2
/*
3
3
 *  GRUB  --  GRand Unified Bootloader
4
 
 *  Copyright (C) 2003,2005,2006,2007  Free Software Foundation, Inc.
 
4
 *  Copyright (C) 2003,2005,2006,2007,2009  Free Software Foundation, Inc.
5
5
 *
6
6
 *  GRUB is free software: you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
23
23
#include <grub/mm.h>
24
24
#include <grub/gzio.h>
25
25
#include <grub/command.h>
 
26
#include <grub/i18n.h>
26
27
 
27
28
#define BUFFER_SIZE 512
28
29
 
109
110
GRUB_MOD_INIT(cmp)
110
111
{
111
112
  cmd = grub_register_command ("cmp", grub_cmd_cmp,
112
 
                               "FILE1 FILE2", "Compare two files.");
 
113
                               N_("FILE1 FILE2"), N_("Compare two files."));
113
114
}
114
115
 
115
116
GRUB_MOD_FINI(cmp)