2005-12-25 Yoshinori K. Okuji <okuji@enbug.org>

* DISTLIST: Added geninitheader.sh, geninit.sh, commands/test.c,
        commands/i386/pc/play.c, conf/common.mk, conf/common.rmk,
        include/grub/parser.h, include/grub/script.h, kern/parser.c,
        kern/sparc64/cache.S, normal/execute.c, normal/function.c,
        normal/lexer.c, normal/parser.y, normal/script.c, and
        partmap/gpt.c.
        Removed kern/sparc64/cache.c.

        * conf/common.rmk (DISTCLEANFILES): Added grub_script.tab.c,
        grub_script.tab.h, grub_modules_init.lst, grub_modules_init.h,
        grub_emu_init.c.

        * configure.ac (AC_INIT): Bumped to 1.92.
This commit is contained in:
okuji 2005-12-25 15:22:55 +00:00
parent 3bbfa26719
commit befaed6ce7
6 changed files with 50 additions and 13 deletions

View file

@ -1,3 +1,19 @@
2005-12-25 Yoshinori K. Okuji <okuji@enbug.org>
* DISTLIST: Added geninitheader.sh, geninit.sh, commands/test.c,
commands/i386/pc/play.c, conf/common.mk, conf/common.rmk,
include/grub/parser.h, include/grub/script.h, kern/parser.c,
kern/sparc64/cache.S, normal/execute.c, normal/function.c,
normal/lexer.c, normal/parser.y, normal/script.c, and
partmap/gpt.c.
Removed kern/sparc64/cache.c.
* conf/common.rmk (DISTCLEANFILES): Added grub_script.tab.c,
grub_script.tab.h, grub_modules_init.lst, grub_modules_init.h,
grub_emu_init.c.
* configure.ac (AC_INIT): Bumped to 1.92.
2005-12-24 Vesa Jaaskelainen <chaac@nic.fi> 2005-12-24 Vesa Jaaskelainen <chaac@nic.fi>
* kern/err.c (grub_error_push): Added new function to support error * kern/err.c (grub_error_push): Added new function to support error

View file

@ -18,6 +18,8 @@ configure.ac
gencmdlist.sh gencmdlist.sh
gendistlist.sh gendistlist.sh
genfslist.sh genfslist.sh
geninitheader.sh
geninit.sh
genkernsyms.sh genkernsyms.sh
genmk.rb genmk.rb
genmodsrc.sh genmodsrc.sh
@ -37,14 +39,18 @@ commands/help.c
commands/ls.c commands/ls.c
commands/search.c commands/search.c
commands/terminal.c commands/terminal.c
commands/test.c
commands/timeout.c commands/timeout.c
commands/i386/pc/halt.c commands/i386/pc/halt.c
commands/i386/pc/play.c
commands/i386/pc/reboot.c commands/i386/pc/reboot.c
commands/i386/pc/vbeinfo.c commands/i386/pc/vbeinfo.c
commands/i386/pc/vbetest.c commands/i386/pc/vbetest.c
commands/ieee1275/halt.c commands/ieee1275/halt.c
commands/ieee1275/reboot.c commands/ieee1275/reboot.c
commands/ieee1275/suspend.c commands/ieee1275/suspend.c
conf/common.mk
conf/common.rmk
conf/i386-pc.mk conf/i386-pc.mk
conf/i386-pc.rmk conf/i386-pc.rmk
conf/powerpc-ieee1275.mk conf/powerpc-ieee1275.mk
@ -88,9 +94,11 @@ include/grub/misc.h
include/grub/mm.h include/grub/mm.h
include/grub/net.h include/grub/net.h
include/grub/normal.h include/grub/normal.h
include/grub/parser.h
include/grub/partition.h include/grub/partition.h
include/grub/pc_partition.h include/grub/pc_partition.h
include/grub/rescue.h include/grub/rescue.h
include/grub/script.h
include/grub/setjmp.h include/grub/setjmp.h
include/grub/symbol.h include/grub/symbol.h
include/grub/term.h include/grub/term.h
@ -148,6 +156,7 @@ kern/loader.c
kern/main.c kern/main.c
kern/misc.c kern/misc.c
kern/mm.c kern/mm.c
kern/parser.c
kern/partition.c kern/partition.c
kern/rescue.c kern/rescue.c
kern/term.c kern/term.c
@ -162,7 +171,7 @@ kern/powerpc/ieee1275/cmain.c
kern/powerpc/ieee1275/crt0.S kern/powerpc/ieee1275/crt0.S
kern/powerpc/ieee1275/init.c kern/powerpc/ieee1275/init.c
kern/powerpc/ieee1275/openfw.c kern/powerpc/ieee1275/openfw.c
kern/sparc64/cache.c kern/sparc64/cache.S
kern/sparc64/dl.c kern/sparc64/dl.c
kern/sparc64/ieee1275/init.c kern/sparc64/ieee1275/init.c
kern/sparc64/ieee1275/openfw.c kern/sparc64/ieee1275/openfw.c
@ -179,15 +188,21 @@ normal/cmdline.c
normal/command.c normal/command.c
normal/completion.c normal/completion.c
normal/context.c normal/context.c
normal/execute.c
normal/function.c
normal/lexer.c
normal/main.c normal/main.c
normal/menu.c normal/menu.c
normal/menu_entry.c normal/menu_entry.c
normal/misc.c normal/misc.c
normal/parser.y
normal/script.c
normal/i386/setjmp.S normal/i386/setjmp.S
normal/powerpc/setjmp.S normal/powerpc/setjmp.S
partmap/acorn.c partmap/acorn.c
partmap/amiga.c partmap/amiga.c
partmap/apple.c partmap/apple.c
partmap/gpt.c
partmap/pc.c partmap/pc.c
partmap/sun.c partmap/sun.c
term/terminfo.c term/terminfo.c

View file

@ -3,17 +3,20 @@
# For the parser. # For the parser.
grub_script.tab.c grub_script.tab.h: normal/parser.y grub_script.tab.c grub_script.tab.h: normal/parser.y
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y $(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
DISTCLEANFILES += grub_script.tab.c grub_script.tab.h
# For grub-emu. # For grub-emu.
grub_modules_init.lst: geninit.sh grub_modules_init.lst: geninit.sh
(cd $(srcdir); find . -name '*.c' -printf "%P\n" | xargs grep GRUB_MOD_INIT) > $@ (cd $(srcdir); find . -name '*.c' -printf "%P\n" | xargs grep GRUB_MOD_INIT) > $@
DISTCLEANFILES += grub_modules_init.lst
grub_modules_init.h: $(filter-out grub_emu_init.c,$(grub_emu_SOURCES)) geninitheader.sh grub_modules_init.lst grub_modules_init.h: $(filter-out grub_emu_init.c,$(grub_emu_SOURCES)) geninitheader.sh grub_modules_init.lst
sh $(srcdir)/geninitheader.sh > $@ sh $(srcdir)/geninitheader.sh > $@
DISTCLEANFILES += grub_modules_init.h
grub_emu_init.c: $(filter-out grub_emu_init.c,$(grub_emu_SOURCES)) geninit.sh grub_modules_init.lst grub_modules_init.h grub_emu_init.c: $(filter-out grub_emu_init.c,$(grub_emu_SOURCES)) geninit.sh grub_modules_init.lst grub_modules_init.h
sh $(srcdir)/geninit.sh $(filter %.c,$^) > $@ sh $(srcdir)/geninit.sh $(filter %.c,$^) > $@
DISTCLEANFILES += grub_emu_init.c
# Filing systems. # Filing systems.

View file

@ -3,17 +3,20 @@
# For the parser. # For the parser.
grub_script.tab.c grub_script.tab.h: normal/parser.y grub_script.tab.c grub_script.tab.h: normal/parser.y
$(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y $(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y
DISTCLEANFILES += grub_script.tab.c grub_script.tab.h
# For grub-emu. # For grub-emu.
grub_modules_init.lst: geninit.sh grub_modules_init.lst: geninit.sh
(cd $(srcdir); find . -name '*.c' -printf "%P\n" | xargs grep GRUB_MOD_INIT) > $@ (cd $(srcdir); find . -name '*.c' -printf "%P\n" | xargs grep GRUB_MOD_INIT) > $@
DISTCLEANFILES += grub_modules_init.lst
grub_modules_init.h: $(filter-out grub_emu_init.c,$(grub_emu_SOURCES)) geninitheader.sh grub_modules_init.lst grub_modules_init.h: $(filter-out grub_emu_init.c,$(grub_emu_SOURCES)) geninitheader.sh grub_modules_init.lst
sh $(srcdir)/geninitheader.sh > $@ sh $(srcdir)/geninitheader.sh > $@
DISTCLEANFILES += grub_modules_init.h
grub_emu_init.c: $(filter-out grub_emu_init.c,$(grub_emu_SOURCES)) geninit.sh grub_modules_init.lst grub_modules_init.h grub_emu_init.c: $(filter-out grub_emu_init.c,$(grub_emu_SOURCES)) geninit.sh grub_modules_init.lst grub_modules_init.h
sh $(srcdir)/geninit.sh $(filter %.c,$^) > $@ sh $(srcdir)/geninit.sh $(filter %.c,$^) > $@
DISTCLEANFILES += grub_emu_init.c
# Filing systems. # Filing systems.

18
configure vendored
View file

@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for GRUB 1.91. # Generated by GNU Autoconf 2.59 for GRUB 1.92.
# #
# Report bugs to <bug-grub@gnu.org>. # Report bugs to <bug-grub@gnu.org>.
# #
@ -269,8 +269,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package. # Identity of this package.
PACKAGE_NAME='GRUB' PACKAGE_NAME='GRUB'
PACKAGE_TARNAME='grub' PACKAGE_TARNAME='grub'
PACKAGE_VERSION='1.91' PACKAGE_VERSION='1.92'
PACKAGE_STRING='GRUB 1.91' PACKAGE_STRING='GRUB 1.92'
PACKAGE_BUGREPORT='bug-grub@gnu.org' PACKAGE_BUGREPORT='bug-grub@gnu.org'
ac_unique_file="include/grub/dl.h" ac_unique_file="include/grub/dl.h"
@ -780,7 +780,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing. # Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh. # This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF cat <<_ACEOF
\`configure' configures GRUB 1.91 to adapt to many kinds of systems. \`configure' configures GRUB 1.92 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]... Usage: $0 [OPTION]... [VAR=VALUE]...
@ -841,7 +841,7 @@ fi
if test -n "$ac_init_help"; then if test -n "$ac_init_help"; then
case $ac_init_help in case $ac_init_help in
short | recursive ) echo "Configuration of GRUB 1.91:";; short | recursive ) echo "Configuration of GRUB 1.92:";;
esac esac
cat <<\_ACEOF cat <<\_ACEOF
@ -958,7 +958,7 @@ fi
test -n "$ac_init_help" && exit 0 test -n "$ac_init_help" && exit 0
if $ac_init_version; then if $ac_init_version; then
cat <<\_ACEOF cat <<\_ACEOF
GRUB configure 1.91 GRUB configure 1.92
generated by GNU Autoconf 2.59 generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc. Copyright (C) 2003 Free Software Foundation, Inc.
@ -972,7 +972,7 @@ cat >&5 <<_ACEOF
This file contains any messages produced by compilers while This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake. running configure, to aid debugging if configure makes a mistake.
It was created by GRUB $as_me 1.91, which was It was created by GRUB $as_me 1.92, which was
generated by GNU Autoconf 2.59. Invocation command line was generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@ $ $0 $@
@ -6965,7 +6965,7 @@ _ASBOX
} >&5 } >&5
cat >&5 <<_CSEOF cat >&5 <<_CSEOF
This file was extended by GRUB $as_me 1.91, which was This file was extended by GRUB $as_me 1.92, which was
generated by GNU Autoconf 2.59. Invocation command line was generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES CONFIG_FILES = $CONFIG_FILES
@ -7028,7 +7028,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\ ac_cs_version="\\
GRUB config.status 1.91 GRUB config.status 1.92
configured by $0, generated by GNU Autoconf 2.59, configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"

View file

@ -11,7 +11,7 @@
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. # PARTICULAR PURPOSE.
AC_INIT(GRUB, 1.91, [bug-grub@gnu.org]) AC_INIT(GRUB, 1.92, [bug-grub@gnu.org])
AC_PREREQ(2.53) AC_PREREQ(2.53)
AC_CONFIG_SRCDIR([include/grub/dl.h]) AC_CONFIG_SRCDIR([include/grub/dl.h])
AC_CONFIG_HEADER([config.h]) AC_CONFIG_HEADER([config.h])