Changeset 68617 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Sep 4, 2017 8:51:22 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/vboxconfig.sh
r62471 r68617 229 229 } 230 230 231 # get_ sysinfo_other()231 # get_unofficial_sysinfo() 232 232 # cannot fail 233 233 get_unofficial_sysinfo() … … 235 235 HOST_OS_MAJORVERSION="11" 236 236 HOST_OS_MINORVERSION="151" 237 } 238 239 # get_s11_4_sysinfo() 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 with 244 # a more accurate minor (build) version number. For now this is sufficient to workaround the ever 245 # changing version numbering policy. 246 HOST_OS_MAJORVERSION="11" 247 HOST_OS_MINORVERSION="175" 237 248 } 238 249 … … 241 252 get_sysinfo() 242 253 { 243 # First check 'uname -v' and weed out the recognized, unofficial distros of Solaris244 254 STR_OSVER=`uname -v` 245 255 case "$STR_OSVER" in 256 # First check 'uname -v' and weed out the recognized, unofficial distros of Solaris 246 257 omnios*|oi_*|illumos*) 247 258 get_unofficial_sysinfo 248 259 return 0 249 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_sysinfo 264 return 0 250 265 esac 251 266
Note:
See TracChangeset
for help on using the changeset viewer.