Changeset 72294 in vbox for trunk/src/VBox/Installer
- Timestamp:
- May 23, 2018 11:17:08 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/vboxconfig.sh
r69500 r72294 237 237 } 238 238 239 # get_s11_4_ sysinfo()239 # get_s11_4_or_newer_sysinfo() 240 240 # cannot fail 241 get_s11_4_ sysinfo()242 { 243 # See check in plumb_net for why this is > 174. The alternative is we declare 11.4 as S12 with241 get_s11_4_or_newer_sysinfo() 242 { 243 # See check in plumb_net for why this is > 174. The alternative is we declare 11.4+ as S12 with 244 244 # a more accurate minor (build) version number. For now this is sufficient to workaround the ever 245 245 # changing version numbering policy. … … 254 254 STR_OSVER=`uname -v` 255 255 case "$STR_OSVER" in 256 256 # First check 'uname -v' and weed out the recognized, unofficial distros of Solaris 257 257 omnios*|oi_*|illumos*) 258 258 get_unofficial_sysinfo 259 259 return 0 260 260 ;; 261 # Quick escape workaround for Solaris 11.4, changes the pkg FMRI (yet again). See BugDB #26494983.262 11.4.* )263 get_s11_4_sysinfo264 261 # Quick escape workaround for Solaris 11.4+, changes the pkg FMRI (yet again). See BugDB #26494983. 262 11.4.* | 11.5.*) 263 get_s11_4_or_newer_sysinfo 264 return 0 265 265 esac 266 266 … … 1211 1211 if test "$HOST_OS_MAJORVERSION" -eq 10; then 1212 1212 for lib in `ls -1 /opt/VirtualBox/legacy/`; do 1213 1213 /usr/sbin/installf -c none $PKGINST /opt/VirtualBox/$lib=legacy/$lib s 1214 1214 done 1215 1215 for lib in `ls -1 /opt/VirtualBox/amd64/legacy/`; do
Note:
See TracChangeset
for help on using the changeset viewer.