2008-02-03 Yoshinori K. Okuji <okuji@enbug.org>
* configure.ac (AC_INIT): Bumped to 1.96. * DISTLIST: Added boot/i386/pc/cdboot.S, bus/pci.c, commands/lspci.c,disk/memdisk.c, include/grub/pci.h, include/grub/i386/pc/pci.h, video/readers/jpeg.c, and video/readers/png.c.
This commit is contained in:
parent
9be665dd11
commit
f2a76e1d19
6 changed files with 3429 additions and 3914 deletions
|
@ -1,3 +1,12 @@
|
|||
2008-02-03 Yoshinori K. Okuji <okuji@enbug.org>
|
||||
|
||||
* configure.ac (AC_INIT): Bumped to 1.96.
|
||||
|
||||
* DISTLIST: Added boot/i386/pc/cdboot.S, bus/pci.c,
|
||||
commands/lspci.c,disk/memdisk.c, include/grub/pci.h,
|
||||
include/grub/i386/pc/pci.h, video/readers/jpeg.c, and
|
||||
video/readers/png.c.
|
||||
|
||||
2008-01-31 Bean <bean123ch@gmail.com>
|
||||
|
||||
* conf/i386-pc.rmk (pkglib_IMAGES): Add cdboot.img.
|
||||
|
|
8
DISTLIST
8
DISTLIST
|
@ -29,9 +29,11 @@ install-sh
|
|||
mkinstalldirs
|
||||
stamp-h.in
|
||||
boot/i386/pc/boot.S
|
||||
boot/i386/pc/cdboot.S
|
||||
boot/i386/pc/diskboot.S
|
||||
boot/i386/pc/lnxboot.S
|
||||
boot/i386/pc/pxeboot.S
|
||||
bus/pci.c
|
||||
commands/boot.c
|
||||
commands/blocklist.c
|
||||
commands/cat.c
|
||||
|
@ -41,6 +43,7 @@ commands/echo.c
|
|||
commands/help.c
|
||||
commands/hexdump.c
|
||||
commands/ls.c
|
||||
commands/lspci.c
|
||||
commands/read.c
|
||||
commands/search.c
|
||||
commands/terminal.c
|
||||
|
@ -71,6 +74,7 @@ disk/ata.c
|
|||
disk/host.c
|
||||
disk/loopback.c
|
||||
disk/lvm.c
|
||||
disk/memdisk.c
|
||||
disk/raid.c
|
||||
disk/efi/efidisk.c
|
||||
disk/i386/pc/biosdisk.c
|
||||
|
@ -128,6 +132,7 @@ include/grub/ntfs.h
|
|||
include/grub/parser.h
|
||||
include/grub/partition.h
|
||||
include/grub/pc_partition.h
|
||||
include/grub/pci.h
|
||||
include/grub/raid.h
|
||||
include/grub/rescue.h
|
||||
include/grub/script.h
|
||||
|
@ -176,6 +181,7 @@ include/grub/i386/pc/kernel.h
|
|||
include/grub/i386/pc/loader.h
|
||||
include/grub/i386/pc/machine.h
|
||||
include/grub/i386/pc/memory.h
|
||||
include/grub/i386/pc/pci.h
|
||||
include/grub/i386/pc/serial.h
|
||||
include/grub/i386/pc/time.h
|
||||
include/grub/i386/pc/vbe.h
|
||||
|
@ -338,5 +344,7 @@ video/video.c
|
|||
video/i386/pc/vbe.c
|
||||
video/i386/pc/vbeblit.c
|
||||
video/i386/pc/vbefill.c
|
||||
video/readers/jpeg.c
|
||||
video/readers/tga.c
|
||||
video/readers/png.c
|
||||
video/i386/pc/vbeutil.c
|
||||
|
|
2
NEWS
2
NEWS
|
@ -1,4 +1,4 @@
|
|||
New in 1.96:
|
||||
New in 1.96 - 2008-02-03:
|
||||
|
||||
* The license term is changed to GNU General Public License Version 3.
|
||||
|
||||
|
|
|
@ -88,10 +88,10 @@
|
|||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* The size of `long', as computed by sizeof. */
|
||||
/* The size of a `long', as computed by sizeof. */
|
||||
#undef SIZEOF_LONG
|
||||
|
||||
/* The size of `void *', as computed by sizeof. */
|
||||
/* The size of a `void *', as computed by sizeof. */
|
||||
#undef SIZEOF_VOID_P
|
||||
|
||||
/* Define it to either start or _start */
|
||||
|
|
|
@ -31,7 +31,7 @@ dnl (such as TARGET_CC, TARGET_CFLAGS, etc.) are used for the target
|
|||
dnl type.
|
||||
|
||||
|
||||
AC_INIT(GRUB, 1.95, [bug-grub@gnu.org])
|
||||
AC_INIT(GRUB, 1.96, [bug-grub@gnu.org])
|
||||
AC_PREREQ(2.53)
|
||||
AC_CONFIG_SRCDIR([include/grub/dl.h])
|
||||
AC_CONFIG_HEADER([config.h])
|
||||
|
|
Loading…
Add table
Reference in a new issue