[2631] 2009-10-14 Robert Millan <[email protected]>

Robert Millan <[email protected]> Wed, 14 Oct 2009 18:23:42 +0000
Newsgroups gmane.comp.boot-loaders.grub.cvs
Message-ID <[email protected]>
Revision: 2631
          http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2631
Author:   robertmh
Date:     2009-10-14 18:23:40 +0000 (Wed, 14 Oct 2009)
Log Message:
-----------
2009-10-14  Robert Millan  <[email protected]>

        * conf/common.rmk (grub-dumpbios): Remove rule.
        (sbin_SCRIPTS, CLEANFILES): Remove `grub-dumpbios'.
        * util/grub-dumpbios.in: Remove file.

Modified Paths:
--------------
    trunk/grub2/ChangeLog
    trunk/grub2/conf/common.rmk

Removed Paths:
-------------
    trunk/grub2/util/grub-dumpbios.in

Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog	2009-10-14 16:49:22 UTC (rev 2630)
+++ trunk/grub2/ChangeLog	2009-10-14 18:23:40 UTC (rev 2631)
@@ -1,5 +1,11 @@
 2009-10-14  Robert Millan  <[email protected]>
 
+	* conf/common.rmk (grub-dumpbios): Remove rule.
+	(sbin_SCRIPTS, CLEANFILES): Remove `grub-dumpbios'.
+	* util/grub-dumpbios.in: Remove file.
+
+2009-10-14  Robert Millan  <[email protected]>
+
 	Refer to kernel of FreeBSD "kFreeBSD" to avoid confusion between
 	the Operating System (FreeBSD) and its kernel (kernel of FreeBSD).
 

Modified: trunk/grub2/conf/common.rmk
===================================================================
--- trunk/grub2/conf/common.rmk	2009-10-14 16:49:22 UTC (rev 2630)
+++ trunk/grub2/conf/common.rmk	2009-10-14 18:23:40 UTC (rev 2631)
@@ -161,13 +161,6 @@
 
 grub-mkconfig_DATA += util/grub.d/README
 
-# For grub-dumpbios
-grub-dumpbios: util/grub-dumpbios.in config.status
-	./config.status --file=$@:$<
-	chmod +x $@
-sbin_SCRIPTS += grub-dumpbios
-CLEANFILES += grub-dumpbios
-
 # Filing systems.
 pkglib_MODULES += fshelp.mod fat.mod ufs1.mod ufs2.mod ext2.mod ntfs.mod \
 	ntfscomp.mod minix.mod hfs.mod jfs.mod iso9660.mod xfs.mod	\

Deleted: trunk/grub2/util/grub-dumpbios.in
===================================================================
--- trunk/grub2/util/grub-dumpbios.in	2009-10-14 16:49:22 UTC (rev 2630)
+++ trunk/grub2/util/grub-dumpbios.in	2009-10-14 18:23:40 UTC (rev 2631)
@@ -1,58 +0,0 @@
-#! /bin/sh
-#
-# Copyright (C) 2009  Free Software Foundation, Inc.
-#
-# GRUB is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# GRUB is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
-
-# Usage: usage
-# Print the usage.
-usage () {
-    cat <<EOF
-Usage: $0 [OPTION]
-Create vbios and int10 dump
-
-  -o, --output=DIR        set output directory
-  -h, --help              print this message and exit
-  -v, --version           print the version information and exit
-
-Report bugs to <[email protected]>.
-EOF
-}
-
-# Check the arguments.
-for option in "$@"; do
-    case "$option" in
-    -h | --help)
-	usage
-	exit 0 ;;
-    -v | --version)
-	echo "$0 (GNU GRUB @PACKAGE_VERSION@)"
-	exit 0 ;;
-    -o)
-	shift
-	output_dir=$1
-	;;
-    --output=)
-	output_dir=`echo "$option" | sed 's/--output=//'`
-	;;
-    -*)
-	echo "Unrecognized option \`$option'" 1>&2
-	usage
-	exit 1
-	;;
-    esac
-done
-
-dd if=/dev/mem of=${output_dir}vbios.bin bs=65536 skip=12 count=1
-dd if=/dev/mem of=${output_dir}int10.bin bs=4 skip=16 count=1