* grub-core/lib/adler32.c: Add missing license specification.
* grub-core/lib/crc64.c: Likewise. * grub-core/loader/i386/pc/plan9.c: Likewise. * grub-core/partmap/plan.c: Likewise.
This commit is contained in:
parent
2536cf6463
commit
581ffa8a24
5 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2011-11-14 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/lib/adler32.c: Add missing license specification.
|
||||
* grub-core/lib/crc64.c: Likewise.
|
||||
* grub-core/loader/i386/pc/plan9.c: Likewise.
|
||||
* grub-core/partmap/plan.c: Likewise.
|
||||
|
||||
2011-11-13 Lubomir Kundrak <lkundrak@redhat.com>
|
||||
|
||||
Add facility to debug GRUB with gdb under qemu.
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#include <grub/dl.h>
|
||||
#include <grub/crypto.h>
|
||||
|
||||
GRUB_MOD_LICENSE ("GPLv3+");
|
||||
|
||||
/* Based on adler32() from adler32.c of zlib-1.2.5 library. */
|
||||
|
||||
#define BASE 65521UL
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#include <grub/dl.h>
|
||||
#include <grub/crypto.h>
|
||||
|
||||
GRUB_MOD_LICENSE ("GPLv3+");
|
||||
|
||||
static grub_uint64_t crc64_table [256];
|
||||
|
||||
static void
|
||||
|
|
|
@ -34,6 +34,8 @@
|
|||
#include <grub/cpu/relocator.h>
|
||||
#include <grub/extcmd.h>
|
||||
|
||||
GRUB_MOD_LICENSE ("GPLv3+");
|
||||
|
||||
static grub_dl_t my_mod;
|
||||
static struct grub_relocator *rel;
|
||||
static grub_uint32_t eip = 0xffffffff;
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
#include <grub/types.h>
|
||||
#include <grub/err.h>
|
||||
|
||||
GRUB_MOD_LICENSE ("GPLv3+");
|
||||
|
||||
static struct grub_partition_map grub_plan_partition_map;
|
||||
|
||||
static grub_err_t
|
||||
|
|
Loading…
Reference in a new issue