]> git.proxmox.com Git - grub2.git/commitdiff
remove ieee1275/grub-install and adapt grub-install for ieee1275
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Mon, 30 Aug 2010 17:30:34 +0000 (19:30 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Mon, 30 Aug 2010 17:30:34 +0000 (19:30 +0200)
Makefile.util.def
util/grub-install.in
util/ieee1275/grub-install.in [deleted file]

index 9565dde65cade8e2361d00c65dcba7b25fd24716..0beae52ce8e7b44d795d361e6213bde4b47ad328 100644 (file)
@@ -351,10 +351,10 @@ script = {
   i386_coreboot = util/grub-install.in;
   i386_multiboot = util/grub-install.in;
   sparc64_ieee1275 = util/grub-install.in;
+  i386_ieee1275 = util/grub-install.in;
+  powerpc_ieee1275 = util/grub-install.in;
 
   x86_efi = util/i386/efi/grub-install.in;
-  i386_ieee1275 = util/ieee1275/grub-install.in;
-  powerpc_ieee1275 = util/ieee1275/grub-install.in;
 
   enable = noemu;
 };
index 4a5b5a1c3ad04766612d9db2f622c1324a55924c..2502c7bf0cfcc49fb2312da3c455914025331ba9 100644 (file)
@@ -41,6 +41,7 @@ grub_mkimage=${bindir}/`echo grub-mkimage | sed ${transform}`
 grub_mkdevicemap=${sbindir}/`echo grub-mkdevicemap | sed ${transform}`
 grub_probe=${sbindir}/`echo grub-probe | sed ${transform}`
 grub_editenv=${bindir}/`echo grub-editenv | sed ${transform}`
+grub_mkrelpath=${bindir}/`echo grub-mkrelpath | sed ${transform}`
 rootdir=
 grub_prefix=`echo /boot/grub | sed ${transform}`
 modules=
@@ -52,6 +53,11 @@ recheck=no
 debug=no
 debug_image=
 
+update_nvram=yes
+
+ofpathname=`which ofpathname`
+nvsetenv=`which nvsetenv`
+
 if [ "${target_cpu}-${platform}" = "i386-pc" ] ; then
     disk_module=biosdisk
 elif [ "${target_cpu}-${platform}" = "sparc64-ieee1275" ] ; then
@@ -63,8 +69,16 @@ fi
 # Usage: usage
 # Print the usage.
 usage () {
+if test "x$install_device" = x && test "${target_cpu}-${platform}" != "mips-yeeloong" && test "${target_cpu}-${platform}" != "i386-ieee1275" && test "${target_cpu}-${platform}" != "powerpc-ieee1275"; then
     cat <<EOF
 Usage: $self [OPTION] install_device
+EOF
+else
+    cat <<EOF
+Usage: $self [OPTION] [install_device]
+EOF
+fi
+cat <<EOF
 Install GRUB on your drive.
 
   -h, --help              print this message and exit
@@ -74,6 +88,7 @@ Install GRUB on your drive.
                           instead of the root directory
   --grub-setup=FILE       use FILE as grub-setup
   --grub-mkimage=FILE     use FILE as grub-mkimage
+  --grub-mkrelpath=FILE   use FILE as grub-mkrelpath
   --grub-mkdevicemap=FILE use FILE as grub-mkdevicemap
   --grub-probe=FILE       use FILE as grub-probe
   --no-floppy             do not probe any floppy drive
@@ -85,6 +100,11 @@ if [ "${target_cpu}-${platform}" = "i386-pc" ] ; then
   --disk-module=MODULE    disk module to use
 EOF
 fi
+if [ "${target_cpu}-${platform}" = "i386-ieee1275" ] || [ "${target_cpu}-${platform}" = "powerpc-ieee1275" ] ; then
+    cat <<EOF
+  --no-nvram              don't update the boot-device NVRAM variable
+EOF
+fi
 if [ "${target_cpu}-${platform}" = "mips-yeeloong" ] ; then
     cat <<EOF
   --font=FILE             font file to use
@@ -154,6 +174,11 @@ do
     --grub-mkimage=*)
        grub_mkimage=`echo "$option" | sed 's/--grub-mkimage=//'` ;;
 
+    --grub-mkrelpath)
+       grub_mkrelpath=`argument $option "$@"`; shift;;
+    --grub-mkimage=*)
+       grub_mkrelpath=`echo "$option" | sed 's/--grub-mkrelpath=//'` ;;
+
     --grub-mkdevicemap)
        grub_mkdevicemap=`argument $option "$@"`; shift;;
     --grub-mkdevicemap=*)
@@ -178,6 +203,9 @@ do
            disk_module=`echo "$option" | sed 's/--disk-module=//'`
         fi ;;
 
+    --no-nvram)
+       update_nvram=no ;;
+
     # This is an undocumented feature...
     --debug)
        debug=yes ;;
@@ -207,7 +235,7 @@ done
 # for make_system_path_relative_to_its_root()
 . ${libdir}/grub/grub-mkconfig_lib
 
-if test "x$install_device" = x && test "${target_cpu}-${platform}" != "mips-yeeloong"; then
+if test "x$install_device" = x && test "${target_cpu}-${platform}" != "mips-yeeloong" && test "${target_cpu}-${platform}" != "i386-ieee1275" && test "${target_cpu}-${platform}" != "powerpc-ieee1275"; then
     echo "install_device not specified." 1>&2
     usage
     exit 1
@@ -405,19 +433,61 @@ case "${target_cpu}-${platform}" in
     i386-pc) mkimage_target=i386-pc ;;
     sparc64-ieee1275) mkimage_target=sparc64-ieee1275-raw ;;
     mips-yeeloong) mkimage_target=mipsel-yeeloong-elf ;;
-    *) mkimage_target=i386-coreboot;
+    i386-coreboot) mkimage_target=i386-coreboot ;;
+    i386-multiboot) mkimage_target=i386-multiboot ;;
+    i386-qemu) mkimage_target=i386-multiboot ;;
+    i386-ieee1275) mkimage_target=i386-ieee1275 ;;
+    powerpc-ieee1275) mkimage_target=powerpc-ieee1275 ;;
+    *) echo "Unknown platform"; exit 1 ;;
 esac
 
-if [ "${target_cpu}-${platform}" = "i386-pc" ] || [ "${target_cpu}-${platform}" = "sparc64-ieee1275" ] ; then
-    $grub_mkimage ${config_opt} -O ${mkimage_target} --output=${grubdir}/core.img --prefix=${prefix_drive}${relative_grubdir} $modules || exit 1
+$grub_mkimage ${config_opt} -O ${mkimage_target} --output=${grubdir}/core.img --prefix=${prefix_drive}${relative_grubdir} $modules || exit 1
+
+# Copy to traditional location for compatibility
+if [ "${target_cpu}-${platform}" = "mips-yeeloong" ]; then
+    cp ${grubdir}/core.img /boot/grub.elf
+elif [ "${target_cpu}-${platform}" = "i386-ieee1275" ] || [ "${target_cpu}-${platform}" = "powerpc-ieee1275" ]; then
+    cp ${grubdir}/core.img /boot/grub
+fi
 
+if [ "${target_cpu}-${platform}" = "i386-pc" ] || [ "${target_cpu}-${platform}" = "sparc64-ieee1275" ] ; then
     # Now perform the installation.
     $grub_setup ${setup_verbose} ${setup_force} --directory=${grubdir} --device-map=${device_map} \
         ${install_device} || exit 1
-elif [ "${target_cpu}-${platform}" = "mips-yeeloong" ] ; then
-    $grub_mkimage ${config_opt} -f ${font} -d ${pkglibdir} -O ${mkimage_target} --output=/boot/grub.elf --prefix=${prefix_drive}${relative_grubdir} $modules || exit 1
-else
-    $grub_mkimage -O ${mkimage_target} ${config_opt} -d ${pkglibdir} --output=/boot/multiboot.img --prefix=${prefix_drive}${relative_grubdir} $modules || exit 1
+elif [ "${target_cpu}-${platform}" = "i386-ieee1275" ] || [ "${target_cpu}-${platform}" = "powerpc-ieee1275" ]; then
+    if [ x"$update_nvram" = xyes ]; then
+       set $ofpathname dummy
+       if test -f "$1"; then
+           :
+       else
+           echo "$1: Not found." 1>&2
+           exit 1
+       fi
+       set $nvsetenv dummy
+       if test -f "$1"; then
+           :
+       else
+           echo "$1: Not found." 1>&2
+           exit 1
+       fi
+        # Get the Open Firmware device tree path translation.
+       dev=`echo $grub_device | sed -e 's/\/dev\///' -e 's/[0-9]\+//'`
+       partno=`echo $grub_device | sed -e 's/.*[^0-9]\([0-9]\+\)$/\1/'`
+       ofpath=`$ofpathname $dev` || {
+           echo "Couldn't find Open Firmware device tree path for $dev."
+           echo "You will have to set boot-device manually."
+           exit 1
+       }
+
+        # Point boot-device at the new grub install
+       boot_device="$ofpath:$partno,"`grub-mkrelpath ${grubdir}/core.img | sed 's,/,\\,g'`
+       "$nvsetenv" boot-device "$boot_device" || {
+           echo "$nvsetenv failed."
+           echo "You will have to set boot-device manually.  At the Open Firmware prompt, type:"
+           echo "  setenv boot-device $boot_device"
+           exit 1
+       }
+    fi
 fi
 
 echo "Installation finished. No error reported."
diff --git a/util/ieee1275/grub-install.in b/util/ieee1275/grub-install.in
deleted file mode 100644 (file)
index 98de5f3..0000000
+++ /dev/null
@@ -1,273 +0,0 @@
-#! /bin/sh
-
-# Install GRUB on your drive.
-# Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008  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/>.
-
-# This script uses `ofpathname', which is downloadable from
-# http://ppc64-utils.ozlabs.org .
-
-# Initialize some variables.
-transform="@program_transform_name@"
-
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-sbindir=@sbindir@
-bindir=@bindir@
-libdir=@libdir@
-PACKAGE_NAME=@PACKAGE_NAME@
-PACKAGE_TARNAME=@PACKAGE_TARNAME@
-PACKAGE_VERSION=@PACKAGE_VERSION@
-target_cpu=@target_cpu@
-platform=@platform@
-pkglibdir=${libdir}/`echo ${PACKAGE_TARNAME}/${target_cpu}-${platform} | sed ${transform}`
-
-self=`basename $0`
-
-grub_mkimage=${bindir}/`echo grub-mkimage | sed ${transform}`
-grub_mkdevicemap=${sbindir}/`echo grub-mkdevicemap | sed ${transform}`
-grub_probe=${sbindir}/`echo grub-probe | sed ${transform}`
-grub_editenv=${bindir}/`echo grub-editenv | sed ${transform}`
-rootdir=
-grub_prefix=`echo /boot/grub | sed ${transform}`
-modules=
-
-install_device=
-debug=no
-update_nvram=yes
-
-ofpathname=`which ofpathname`
-nvsetenv=`which nvsetenv`
-
-# Usage: usage
-# Print the usage.
-usage () {
-    cat <<EOF
-Usage: $self [OPTION] [install_device]
-Install GRUB on your drive.
-
-  -h, --help              print this message and exit
-  -v, --version           print the version information and exit
-  --modules=MODULES       pre-load specified modules MODULES
-  --root-directory=DIR    install GRUB images under the directory DIR
-                          instead of the root directory
-  --grub-mkdevicemap=FILE use FILE as grub-mkdevicemap
-  --grub-mkimage=FILE     use FILE as grub-mkimage
-  --grub-probe=FILE       use FILE as grub-probe
-  --no-nvram              don't update the boot-device NVRAM variable
-
-$self copies GRUB images into the DIR/boot directory specified by
---root-directory, and uses nvsetenv to set the Open Firmware boot-device
-variable.
-
-Report bugs to <bug-grub@gnu.org>.
-EOF
-}
-
-argument () {
-  opt=$1
-  shift
-
-  if test $# -eq 0; then
-      echo "$0: option requires an argument -- '$opt'" 1>&2
-      exit 1
-  fi
-  echo $1
-}
-
-# Check the arguments.
-while test $# -gt 0
-do
-    option=$1
-    shift
-
-    case "$option" in
-    -h | --help)
-       usage
-       exit 0 ;;
-    -v | --version)
-       echo "$self (${PACKAGE_NAME}) ${PACKAGE_VERSION}"
-       exit 0 ;;
-
-    --modules)
-       modules=`argument $option "$@"`; shift ;;
-    --modules=*)
-       modules=`echo "$option" | sed 's/--modules=//'` ;;
-
-    --root-directory)
-       rootdir=`argument $option "$@"`; shift ;;
-    --root-directory=*)
-       rootdir=`echo "$option" | sed 's/--root-directory=//'` ;;
-
-    --grub-mkdevicemap)
-       grub_mkdevicemap=`argument $option "$@"`; shift ;;
-    --grub-mkdevicemap=*)
-       grub_mkdevicemap=`echo "$option" | sed 's/--grub-mkdevicemap=//'` ;;
-
-    --grub-mkimage)
-       grub_mkimage=`argument $option "$@"`; shift ;;
-    --grub-mkimage=*)
-       grub_mkimage=`echo "$option" | sed 's/--grub-mkimage=//'` ;;
-
-    --grub-probe)
-       grub_probe=`argument $option "$@"`; shift ;;
-    --grub-probe=*)
-       grub_probe=`echo "$option" | sed 's/--grub-probe=//'` ;;
-
-    --no-nvram)
-       update_nvram=no ;;
-    # This is an undocumented feature...
-    --debug)
-       debug=yes ;;
-    -*)
-       echo "Unrecognized option \`$option'" 1>&2
-       usage
-       exit 1
-       ;;
-    *)
-       if test "x$install_device" != x; then
-           echo "More than one install_devices?" 1>&2
-           usage
-           exit 1
-       fi
-       install_device="${option}" ;;
-    esac
-done
-
-# If the debugging feature is enabled, print commands.
-if test $debug = yes; then
-    set -x
-fi
-
-# Initialize these directories here, since ROOTDIR was initialized.
-bootdir=${rootdir}/boot
-grubdir=${bootdir}/`echo grub | sed ${transform}`
-device_map=${grubdir}/device.map
-
-set $grub_mkimage dummy
-if test -f "$1"; then
-    :
-else
-    echo "$1: Not found." 1>&2
-    exit 1
-fi
-
-# Find the partition at the right mount point.
-install_device=`$grub_mkdevicemap --device-map=/dev/stdout | $grub_probe --target=device --device-map=/dev/stdin ${grubdir}`
-
-if test "x$install_device" = "x`$grub_mkdevicemap --device-map=/dev/stdout | $grub_probe --target=device --device-map=/dev/stdin ${bootdir}`"; then
-    echo "$grubdir must be a mount point."
-    exit 1
-fi
-# XXX warn on firmware-unreadable filesystems?
-
-# Create the GRUB directory if it is not present.
-mkdir -p "$grubdir" || exit 1
-
-# Create the device map file if it is not present.
-if test -f "$device_map"; then
-    :
-else
-    # Create a safe temporary file.
-    test -n "$mklog" && log_file=`$mklog`
-
-    $grub_mkdevicemap --device-map=$device_map $no_floppy || exit 1
-fi
-
-# Copy the GRUB images to the GRUB directory.
-for file in ${grubdir}/*.mod ${grubdir}/*.lst ; do
-    if test -f $file; then
-       rm -f $file || exit 1
-    fi
-done
-for file in ${pkglibdir}/*.mod ${pkglibdir}/*.lst ; do
-    cp -f $file ${grubdir} || exit 1
-done
-
-if ! test -f ${grubdir}/grubenv; then
-    $grub_editenv ${grubdir}/grubenv create
-fi
-
-# Create the core image. First, auto-detect the filesystem module.
-fs_module=`$grub_probe --target=fs --device-map=${device_map} ${grubdir}`
-if test "x$fs_module" = x -a "x$modules" = x; then
-    echo "Auto-detection of a filesystem module failed." 1>&2
-    echo "Please specify the module with the option \`--modules' explicitly." 1>&2
-    exit 1
-fi
-
-# Then the partition map module.  In order to support partition-less media,
-# this command is allowed to fail (--target=fs already grants us that the
-# filesystem will be accessible).
-partmap_module=
-for x in `$grub_probe --target=partmap --device-map=${device_map} ${grubdir} 2> /dev/null`; do
-   partmap_module="$partmap_module part_$x";
-done
-
-# Device abstraction module, if any (lvm, raid).
-devabstraction_module=`$grub_probe --target=abstraction --device-map=${device_map} ${grubdir}`
-
-modules="$modules $fs_module $partmap_module $devabstraction_module"
-
-# Now perform the installation.
-"$grub_mkimage" -O ${target_cpu}-ieee1275 --directory=${pkglibdir} --output=${grubdir}/grub $modules || exit 1
-
-if test $update_nvram = yes; then
-    set $ofpathname dummy
-    if test -f "$1"; then
-       :
-    else
-       echo "$1: Not found." 1>&2
-       exit 1
-    fi
-
-    set $nvsetenv dummy
-    if test -f "$1"; then
-       :
-    else
-       echo "$1: Not found." 1>&2
-       exit 1
-    fi
-
-    # Get the Open Firmware device tree path translation.
-    dev=`echo $install_device | sed -e 's/\/dev\///' -e 's/[0-9]\+//'`
-    partno=`echo $install_device | sed -e 's/.*[^0-9]\([0-9]\+\)$/\1/'`
-    ofpath=`$ofpathname $dev` || {
-       echo "Couldn't find Open Firmware device tree path for $dev."
-       echo "You will have to set boot-device manually."
-       exit 1
-    }
-
-    # Point boot-device at the new grub install
-    boot_device="$ofpath:$partno,\\grub"
-    "$nvsetenv" boot-device "$boot_device" || {
-       echo "$nvsetenv failed."
-       echo "You will have to set boot-device manually.  At the Open Firmware prompt, type:"
-       echo "  setenv boot-device $boot_device"
-       exit 1
-    }
-fi
-
-# Prompt the user to check if the device map is correct.
-echo "Installation finished. No error reported."
-echo "This is the contents of the device map $device_map."
-echo "Check if this is correct or not. If any of the lines is incorrect,"
-echo "fix it and re-run the script \`$self'."
-echo
-
-cat $device_map
-
-# Bye.
-exit 0