VirtualBox

Changeset 105784 in vbox for trunk/src/VBox/Additions


Ignore:
Timestamp:
Aug 21, 2024 4:50:34 PM (7 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
164496
Message:

Additions: Linux: Make installer autorun work for ARM guests (part 2), bugref:10457.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/linux/installer/autorun.sh

    r105769 r105784  
    8989# execute the installer
    9090if test "$ostype" = "Linux"; then
    91     for i in "$path/VBoxLinuxAdditions.run" \
    92         "$path/VBoxLinuxAdditions-$arch.run"; do
    93         if test -f "$i"; then
    94             getxterm
    95             case "$gxtpath" in ?*)
    96                 TITLE="VirtualBox Guest Additions installation"
    97                 BINARY="`quotify "$i"`"
    98                 exec "$gxtpath" "$gxttitle" "$TITLE" "$gxtexec" /bin/sh "$path/runasroot.sh" --has-terminal "$TITLE" "/bin/sh $BINARY --xwin" "Please try running "\""$i"\"" manually."
    99                 exit
    100                 ;;
    101             *)
    102                 echo "Unable to start installation process with elevated privileges automatically. Please try running "\""$i"\"" manually."
    103                 exit
     91
     92    # Specify path to the architecture specific installer.
     93    if test "$arch" = "arm64"; then
     94        installer="$path/VBoxLinuxAdditions-arm64.run"
     95    else
     96        installer="$path/VBoxLinuxAdditions.run"
     97    fi
     98
     99    # Proceed to installation.
     100    if test -f "$installer"; then
     101        getxterm
     102        case "$gxtpath" in ?*)
     103            TITLE="VirtualBox Guest Additions installation"
     104            BINARY="`quotify "$installer"`"
     105            exec "$gxtpath" "$gxttitle" "$TITLE" "$gxtexec" /bin/sh "$path/runasroot.sh" --has-terminal "$TITLE" "/bin/sh $BINARY --xwin" "Please try running "\""$installer"\"" manually."
     106            exit
    104107            ;;
    105             esac
    106         fi
    107     done
     108        *)
     109            echo "Unable to start installation process with elevated privileges automatically. Please try running "\""$installer"\"" manually."
     110            exit
     111        ;;
     112        esac
     113    fi
    108114
    109115    # else: unknown failure
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette