commit-grub
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[2487] 2009-08-08 Robert Millan <address@hidden>


From: Robert Millan
Subject: [2487] 2009-08-08 Robert Millan <address@hidden>
Date: Sat, 08 Aug 2009 19:24:58 +0000

Revision: 2487
          http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2487
Author:   robertmh
Date:     2009-08-08 19:24:58 +0000 (Sat, 08 Aug 2009)
Log Message:
-----------
2009-08-08  Robert Millan  <address@hidden>

        * util/grub-dumpdevtree: Moved from here ...
        * util/i386/efi/grub-dumpdevtree: ... to here.
        (hexify): New function.  Converts a string to its hex version.
        Generate hex versions of "efi" and "device-properties" by calling
        hexify() on the ASCII strings rather than by hardcoding numbers.

Modified Paths:
--------------
    trunk/grub2/ChangeLog

Added Paths:
-----------
    trunk/grub2/util/i386/efi/grub-dumpdevtree

Removed Paths:
-------------
    trunk/grub2/util/grub-dumpdevtree

Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog       2009-08-08 18:53:49 UTC (rev 2486)
+++ trunk/grub2/ChangeLog       2009-08-08 19:24:58 UTC (rev 2487)
@@ -1,5 +1,13 @@
 2009-08-08  Robert Millan  <address@hidden>
 
+       * util/grub-dumpdevtree: Moved from here ...
+       * util/i386/efi/grub-dumpdevtree: ... to here.
+       (hexify): New function.  Converts a string to its hex version.
+       Generate hex versions of "efi" and "device-properties" by calling
+       hexify() on the ASCII strings rather than by hardcoding numbers.
+
+2009-08-08  Robert Millan  <address@hidden>
+
        * fs/jfs.c: Update copyright year.
 
 2009-08-08  Felix Zielcke  <address@hidden>

Deleted: trunk/grub2/util/grub-dumpdevtree
===================================================================
--- trunk/grub2/util/grub-dumpdevtree   2009-08-08 18:53:49 UTC (rev 2486)
+++ trunk/grub2/util/grub-dumpdevtree   2009-08-08 19:24:58 UTC (rev 2487)
@@ -1,3 +0,0 @@
-echo "656669{  6465766963652d70726f70657274696573:"
-ioreg -lw0 -p IODeviceTree -n efi -r -x |grep device-properties | sed 
's/.*<//;s/>.*//;'
-echo ";}"

Copied: trunk/grub2/util/i386/efi/grub-dumpdevtree (from rev 2485, 
trunk/grub2/util/grub-dumpdevtree)
===================================================================
--- trunk/grub2/util/i386/efi/grub-dumpdevtree                          (rev 0)
+++ trunk/grub2/util/i386/efi/grub-dumpdevtree  2009-08-08 19:24:58 UTC (rev 
2487)
@@ -0,0 +1,25 @@
+#!/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/>.
+
+hexify()
+{
+  echo -n "$@" | od -A n -t x1 - | sed -e 's/ //g' | tr '\n' '\0'
+}
+
+echo "`hexify efi`{    `hexify device-properties`:"
+ioreg -lw0 -p IODeviceTree -n efi -r -x |grep device-properties | sed 
's/.*<//;s/>.*//;'
+echo ";}"


Property changes on: trunk/grub2/util/i386/efi/grub-dumpdevtree
___________________________________________________________________
Added: svn:mergeinfo
   + 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]