summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2016-09-06 17:02:42 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2016-09-06 17:02:42 -0400
commit56de10781d6c3997fc9d689c74784ffa5aa24196 (patch)
tree8a9da8a7af69fe8d70fbf9abf0bf443f48de8956
parentc9167f5ba6514f86934c166ead7669e8ff2d7b1f (diff)
parentce221d3b19cb6cba1d4db90490939ebeabb2c408 (diff)
downloadinxi-56de10781d6c3997fc9d689c74784ffa5aa24196.tar.bz2
inxi-56de10781d6c3997fc9d689c74784ffa5aa24196.tar.xz
inxi-56de10781d6c3997fc9d689c74784ffa5aa24196.tar.zst
Merge tag 'upstream/2.3.1'
Upstream version 2.3.1 # gpg: Signature made Tue 06 Sep 2016 05:02:41 PM EDT using RSA key ID EBE9BD91 # gpg: Good signature from "Unit 193 <unit193@gmail.com>" # gpg: aka "Unit 193 <unit193@ninthfloor.org>" # gpg: aka "Unit 193 <unit193@ubuntu.com>" # gpg: aka "Unit 193 <unit193@ninthfloor.com>"
-rwxr-xr-xinxi133
-rwxr-xr-xinxi.112
-rw-r--r--inxi.1.gzbin10601 -> 10721 bytes
-rwxr-xr-xinxi.changelog22
4 files changed, 115 insertions, 52 deletions
diff --git a/inxi b/inxi
index fc9550f..90b1504 100755
--- a/inxi
+++ b/inxi
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
########################################################################
#### Script Name: inxi
-#### Version: 2.3.0
-#### Date: 2016-04-18
+#### Version: 2.3.1
+#### Date: 2016-08-25
#### Patch Number: 00
########################################################################
#### SPECIAL THANKS
@@ -32,7 +32,7 @@
#### Version control:
#### * https://github.com/smxi/inxi
#### * git: git pull https://github.com/smxi/inxi master
-#### * svn checkout url: https://github.com/smxi/inxi
+#### * source checkout url: https://github.com/smxi/inxi
####
#### This program is free software; you can redistribute it and/or modify
#### it under the terms of the GNU General Public License as published by
@@ -192,11 +192,11 @@
#### -! 1 - triggers default B_TESTING_1='true' to trigger some test or other
#### -! 2 - triggers default B_TESTING_2='true' to trigger some test or other
#### -! 3 - triggers B_TESTING_1='true' and B_TESTING_2='true'
-#### -! 10 - triggers an update from the primary dev download server instead of svn
-#### -! 11 - triggers an update from svn branch one - if present, of course
-#### -! 12 - triggers an update from svn branch two - if present, of course
-#### -! 13 - triggers an update from svn branch three - if present, of course
-#### -! 14 - triggers an update from svn branch four - if present, of course
+#### -! 10 - triggers an update from the primary dev download server instead of source
+#### -! 11 - triggers an update from source branch one - if present, of course
+#### -! 12 - triggers an update from source branch two - if present, of course
+#### -! 13 - triggers an update from source branch three - if present, of course
+#### -! 14 - triggers an update from source branch four - if present, of course
#### -! <http://......> - Triggers an update from whatever server you list.
#### LOG FLAGS (logs to $HOME/.inxi/inxi.log with rotate 3 total)
#### -@ 8 - Basic data logging of generated data / array values
@@ -1394,7 +1394,7 @@ error_handler()
error_message="unsupported testing option argument: -! $2"
;;
12)
- error_message="the git branch download url: $2\nappears to be empty currently. Make sure there is an actual svn branch version\nactive before you try this again. Check https://github.com/smxi/inxi\nto verify the branch status."
+ error_message="the git branch download url: $2\nappears to be empty currently. Make sure there is an actual source branch version\nactive before you try this again. Check https://github.com/smxi/inxi\nto verify the branch status."
;;
13)
error_message="The -t option requires the following extra arguments (no spaces between letters/numbers):\nc m cm [required], for example: -t cm8 OR -t cm OR -t c9\n(numbers: 1-20, > 5 throttled to 5 in irc clients) You entered: $2"
@@ -1651,7 +1651,7 @@ script_self_updater()
fi
# now run the error handlers on any wget failure
else
- if [[ $2 == 'svn server' ]];then
+ if [[ $2 == 'source server' ]];then
error_handler 8 "$downloader_error"
elif [[ $2 == 'alt server' ]];then
error_handler 10 "$1"
@@ -2050,6 +2050,10 @@ debug_data_collector()
touch $debug_data_dir/kde-about-distro-absent
fi
echo $XDG_CURRENT_DESKTOP &> $debug_data_dir/xdg-current-desktop.txt
+ echo $XDG_SESSION_DESKTOP &> $debug_data_dir/xdg-session-desktop.txt
+ echo $DESKTOP_SESSION &> $debug_data_dir/desktop-session.txt
+ echo $GDMSESSION &> $debug_data_dir/gdmsession.txt
+
fi
if [[ $1 == 'disk' || $1 == 'all' ]];then
echo 'Collecting dev, label, disk, uuid data, df...'
@@ -2765,7 +2769,7 @@ get_parameters()
fi
;;
U) if [[ $B_ALLOW_UPDATE == 'true' ]];then
- script_self_updater "$SCRIPT_DOWNLOAD" 'svn server' "$opt"
+ script_self_updater "$SCRIPT_DOWNLOAD" 'source server' "$opt"
else
error_handler 17 "-$opt"
fi
@@ -2875,22 +2879,22 @@ get_parameters()
script_self_updater "$SCRIPT_DOWNLOAD_DEV" 'dev server' "$opt $OPTARG"
;;
11)
- script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_1" 'svn: branch one server' "$opt $OPTARG"
+ script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_1" 'branch one server' "$opt $OPTARG"
;;
12)
- script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_2" 'svn: branch two server' "$opt $OPTARG"
+ script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_2" 'branch two server' "$opt $OPTARG"
;;
13)
- script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_3" 'svn: branch three server' "$opt $OPTARG"
+ script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_3" 'branch three server' "$opt $OPTARG"
;;
14)
- script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_4" 'svn: branch four server' "$opt $OPTARG"
+ script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_4" 'branch four server' "$opt $OPTARG"
;;
15)
- script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_BSD" 'svn: branch bsd server' "$opt $OPTARG"
+ script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_BSD" 'branch bsd server' "$opt $OPTARG"
;;
16)
- script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_GNUBSD" 'svn: branch gnubsd server' "$opt $OPTARG"
+ script_self_updater "$SCRIPT_DOWNLOAD_BRANCH_GNUBSD" 'branch gnubsd server' "$opt $OPTARG"
;;
http*)
script_self_updater "$OPTARG" 'alt server' "$opt <http...>"
@@ -3000,12 +3004,12 @@ show_options()
print_lines_basic "1" "-I" "Information: processes, uptime, memory, irc client (or shell type), $SCRIPT_NAME version."
print_lines_basic "1" "-l" "$partition_string_u labels. Default: short $partition_string -P. For full -p output, use: -pl (or -plu)."
print_lines_basic "1" "-m" "Memory (RAM) data. Physical system memory array(s), capacity, how many devices (slots) supported, and individual memory devices (sticks of memory etc). For devices, shows device locator, size, speed, type (like: DDR3). Also see -x, -xx, -xxx"
- print_lines_basic "1" "-M" "Machine data. Motherboard, Bios, and if present, System Builder (Like Lenovo). Older systems/kernels without the required /sys data can use dmidecode instead, run as root. Dmidecode can be forced with -! 33"
+ print_lines_basic "1" "-M" "Machine data. Motherboard, Bios, and if present, System Builder (Like Lenovo). Shows UEFI/BIOS/UEFI [Legacy}. Older systems/kernels without the required /sys data can use dmidecode instead, run as root. Dmidecode can be forced with -! 33"
print_lines_basic "1" "-n" "Advanced Network card information. Same as -Nn. Shows interface, speed, mac id, state, etc."
print_lines_basic "1" "-N" "Network card information. With -x, shows PCI BusID, Port number."
print_lines_basic "1" "-o" "Unmounted $partition_string information (includes UUID and LABEL if available). Shows file system type if you have file installed, if you are root OR if you have added to /etc/sudoers (sudo v. 1.7 or newer) Example:^<username>^ALL^=^NOPASSWD:^/usr/bin/file^"
print_lines_basic "1" "-p" "Full $partition_string information (-P plus all other detected ${partition_string}s)."
- print_lines_basic "1" "-P" "Basic $partition_string information (shows what -v^4 would show, but without extra data). Shows, if detected: / /boot /home /tmp /usr /var. Use -p to see all mounted ${partition_string}s."
+ print_lines_basic "1" "-P" "Basic $partition_string information (shows what -v^4 would show, but without extra data). Shows, if detected: / /boot /home /opt /tmp /usr /var /var/log /var/tmp . Use -p to see all mounted ${partition_string}s."
print_lines_basic "1" "-r" "Distro repository data. Supported repo types: APT; PACMAN; PISI; PORTAGE; PORTS (BSDs); SLACKPKG; URPMQ; YUM; ZYPP."
print_lines_basic "1" "-R" "RAID data. Shows RAID devices, states, levels, and components, and extra data with -x/-xx. md-raid: If device is resyncing, shows resync progress line as well."
print_lines_basic "1" "-s" "Sensors output (if sensors installed/configured): mobo/cpu/gpu temp; detected fan speeds. Gpu temp only for Fglrx/Nvidia drivers. Nvidia shows screen number for > 1 screens."
@@ -3109,13 +3113,13 @@ show_options()
print_lines_basic "1" "-! 2" "Sets testing flag B_TESTING_2='true' to trigger testing condition 2."
print_lines_basic "1" "-! 3" "Sets flags B_TESTING_1='true' and B_TESTING_2='true'."
if [[ $B_ALLOW_UPDATE == 'true' ]];then
- print_lines_basic "1" "-! 10" "Triggers an update from the primary dev download server instead of svn."
- print_lines_basic "1" "-! 11" "Triggers an update from svn branch one - if present, of course."
- print_lines_basic "1" "-! 12" "Triggers an update from svn branch two - if present, of course."
- print_lines_basic "1" "-! 13" "Triggers an update from svn branch three - if present, of course."
- print_lines_basic "1" "-! 14" "Triggers an update from svn branch four - if present, of course."
- print_lines_basic "1" "-! 15" "Triggers an update from svn branch BSD - if present, of course."
- print_lines_basic "1" "-! 16" "Triggers an update from svn branch GNUBSD - if present, of course."
+ print_lines_basic "1" "-! 10" "Triggers an update from the primary dev download server instead of source server."
+ print_lines_basic "1" "-! 11" "Triggers an update from source branch one - if present, of course."
+ print_lines_basic "1" "-! 12" "Triggers an update from source branch two - if present, of course."
+ print_lines_basic "1" "-! 13" "Triggers an update from source branch three - if present, of course."
+ print_lines_basic "1" "-! 14" "Triggers an update from source branch four - if present, of course."
+ print_lines_basic "1" "-! 15" "Triggers an update from source branch BSD - if present, of course."
+ print_lines_basic "1" "-! 16" "Triggers an update from source branch GNUBSD - if present, of course."
print_lines_basic "1" "-! " "<http://......> Triggers an update from whatever server you list."
print_lines_basic "1" "" "Example: inxi^-!^http://yourserver.com/testing/inxi"
fi
@@ -4909,6 +4913,19 @@ get_desktop_environment()
fi
fi
desktop_environment="Unity"
+ elif [[ $XDG_CURRENT_DESKTOP == *Budgie* ]];then
+ version=$( get_program_version 'budgie-desktop' '^budgie-desktop' '2' )
+ # not certain will always have version, so keep output right if not
+ if [[ -n $version ]];then
+ version="$version "
+ fi
+ if [[ $B_EXTRA_DATA == 'true' ]];then
+ toolkit=$( get_de_gtk_data )
+ if [[ -n $toolkit ]];then
+ version="$version(Gtk $toolkit)"
+ fi
+ fi
+ desktop_environment="Budgie"
elif [[ $XDG_CURRENT_DESKTOP == 'LXQt' ]];then
# if type -p lxqt-about &>/dev/null;then
# version=$( get_program_version 'lxqt-about' '^lxqt-about' '2' )
@@ -7030,7 +7047,7 @@ get_machine_data()
{
eval $LOGFS
local a_temp='' separator='' id_file='' file_data='' array_string=''
- local id_dir='/sys/class/dmi/id/' dmi_data=''
+ local id_dir='/sys/class/dmi/id/' dmi_data='' firmware_type='BIOS'
local machine_files="
sys_vendor product_name product_version product_serial product_uuid
board_vendor board_name board_version board_serial
@@ -7042,6 +7059,11 @@ get_machine_data()
"
fi
if [[ -d $id_dir && $B_FORCE_DMIDECODE == 'false' ]];then
+ if [[ -d /sys/firmware/efi ]];then
+ firmware_type='UEFI'
+ elif [[ -n $(ls /sys/firmware/acpi/tables/UEFI* 2>/dev/null ) ]];then
+ firmware_type='UEFI [Legacy]'
+ fi
for id_file in $machine_files
do
file_data=''
@@ -7069,6 +7091,15 @@ get_machine_data()
array_string="$array_string$separator$file_data"
separator=','
done
+ if [[ $array_string != '' ]];then
+ # note: dmidecode has two more data types possible, so always add 2 more
+ if [[ $B_EXTRA_EXTRA_DATA == 'true' ]];then
+ array_string="$array_string,,"
+ else
+ array_string="$array_string,,,,,,"
+ fi
+ array_string="$array_string,$firmware_type"
+ fi
else
get_dmidecode_data
if [[ -n $DMIDECODE_DATA ]];then
@@ -7083,15 +7114,16 @@ get_machine_data()
baseboardProductName=""
baseboardSerialNumber=""
baseboardVersion=""
- biosReleaseDate=""
- biosRevision="" # only available from dmidecode
- biosRomSize="" # only available from dmidecode
- biosVendor=""
- biosVersion=""
chassisManufacturer=""
chassisSerialNumber=""
chassisType=""
chassisVersion=""
+ firmwareReleaseDate=""
+ firmwareRevision="" # only available from dmidecode
+ firmwareRomSize="" # only available from dmidecode
+ firmwareType="BIOS"
+ firmwareVendor=""
+ firmwareVersion=""
systemManufacturer=""
systemProductName=""
systemVersion=""
@@ -7107,13 +7139,14 @@ get_machine_data()
}
/^Bios Information/ {
while ( getline && !/^$/ ) {
- if ( $1 ~ /^Release Date/ ) { biosReleaseDate=$2 }
- if ( $1 ~ /^BIOS Revision/ ) { biosRevision=$2 }
- if ( $1 ~ /^ROM Size/ ) { biosRomSize=$2 }
- if ( $1 ~ /^Vendor/ ) { biosVendor=$2 }
- if ( $1 ~ /^Version/ ) { biosVersion=$2 }
- }
- testString=biosReleaseDate biosRevision biosRomSize biosVendor biosVersion
+ if ( $1 ~ /^Release Date/ ) { firmwareReleaseDate=$2 }
+ if ( $1 ~ /^BIOS Revision/ ) { firmwareRevision=$2 }
+ if ( $1 ~ /^ROM Size/ ) { firmwareRomSize=$2 }
+ if ( $1 ~ /^Vendor/ ) { firmwareVendor=$2 }
+ if ( $1 ~ /^Version/ ) { firmwareVersion=$2 }
+ if ( $1 ~ /^UEFI is supported/ ) { firmwareType="UEFI" }
+ }
+ testString=firmwareReleaseDate firmwareRevision firmwareRomSize firmwareVendor firmwareVersion
if ( testString != "" ) {
bItemFound="true"
}
@@ -7168,10 +7201,10 @@ get_machine_data()
if ( bItemFound == "true" ) {
fullString = systemManufacturer "," systemProductName "," systemVersion "," systemSerialNumber
fullString = fullString "," systemUuid "," baseboardManufacturer "," baseboardProductName
- fullString = fullString "," baseboardVersion "," baseboardSerialNumber "," biosVendor
- fullString = fullString "," biosVersion "," biosReleaseDate "," chassisManufacturer
+ fullString = fullString "," baseboardVersion "," baseboardSerialNumber "," firmwareVendor
+ fullString = fullString "," firmwareVersion "," firmwareReleaseDate "," chassisManufacturer
fullString = fullString "," chassisType "," chassisVersion "," chassisSerialNumber
- fullString = fullString "," biosRevision "," biosRomSize
+ fullString = fullString "," firmwareRevision "," firmwareRomSize "," firmwareType
print fullString
}
@@ -8189,7 +8222,7 @@ get_partition_data()
}
# this handles yet another fredforfaen special case where a mounted drive
# has the search string in its name
- $NF ~ /^\/$|^\/boot$|^\/var$|^\/home$|^\/tmp$|^\/usr$/ {
+ $NF ~ /^\/$|^\/boot$|^\/var$|^\/var\/tmp$|^\/var\/log$|^\/home$|^\/opt$|^\/tmp$|^\/usr$/ {
# note, older df in bsd do not have file system column
if ( NF == "7" && $(NF - 1) ~ /[0-9]+%/ ) {
fileSystem=$(NF - 5)
@@ -8207,7 +8240,7 @@ get_partition_data()
}
# skip all these, including the first, header line. Use the --exclude-type
# to handle new filesystems types we do not want listed here
- $NF !~ /^\/$|^\/boot$|^\/var$|^\/home$|^\/tmp$|^\/usr$|^filesystem/ {
+ $NF !~ /^\/$|^\/boot$|^\/var$|^\/var\/tmp$|^\/var\/log$|^\/home$|^\/opt$|^\/tmp$|^\/usr$|^filesystem/ {
# this is to avoid file systems with spaces in their names, that will make
# the test show the wrong data in each of the fields, if no x%, then do not use
# using 3 cases, first default, standard, 2nd, 3rd, handles one and two spaces in name
@@ -12773,7 +12806,7 @@ print_machine_data()
{
eval $LOGFS
- local system_line='' mobo_line='' bios_line='' chassis_line=''
+ local system_line='' mobo_line='' bios_line='' chassis_line='' #firmware_type='BIOS'
local mobo_vendor='' mobo_model='' mobo_version='' mobo_serial=''
local bios_vendor='' bios_version='' bios_date='' bios_rom='' error_string=''
local system_vendor='' product_name='' product_version='' product_serial='' product_uuid=''
@@ -12787,9 +12820,11 @@ print_machine_data()
## keys for machine data are:
# 0-sys_vendor 1-product_name 2-product_version 3-product_serial 4-product_uuid
# 5-board_vendor 6-board_name 7-board_version 8-board_serial
- # 9-bios_vendor 10-bios_version 11-bios_date
+ # 9-bios_vendor 10-bios_version 11-bios_date
## with extra data:
# 12-chassis_vendor 13-chassis_type 14-chassis_version 15-chassis_serial
+ ## unused: 16-firmware_revision 17-firmware_romsize
+ #
# a null array always has a count of 1
if [[ ${#A_MACHINE_DATA[@]} -gt 1 ]];then
# note: in some case a mobo/version will match a product name/version, do not print those
@@ -12834,6 +12869,10 @@ print_machine_data()
fi
fi
fi
+ # echo ${A_MACHINE_DATA[@]}
+ if [[ -n ${A_MACHINE_DATA[18]} ]];then
+ firmware_type=${A_MACHINE_DATA[18]}
+ fi
if [[ -n ${A_MACHINE_DATA[5]} ]];then
mobo_vendor=${A_MACHINE_DATA[5]}
else
@@ -12872,7 +12911,7 @@ print_machine_data()
bios_rom=" ${C1}rom size$SEP3${C2} ${A_MACHINE_DATA[17]}"
fi
mobo_line="${C1}Mobo$SEP3${C2} $mobo_vendor ${C1}model$SEP3${C2} $mobo_model$mobo_version$mobo_serial"
- bios_line="${C1}Bios$SEP3${C2} $bios_vendor ${C1}v$SEP3${C2} $bios_version ${C1}date$SEP3${C2} $bios_date$bios_rom"
+ bios_line="${C1}$firmware_type$SEP3${C2} $bios_vendor ${C1}v$SEP3${C2} $bios_version ${C1}date$SEP3${C2} $bios_date$bios_rom"
if [[ $( calculate_line_length "$mobo_line$bios_line" ) -lt $COLS_INNER ]];then
mobo_line="$mobo_line $bios_line"
bios_line=''
diff --git a/inxi.1 b/inxi.1
index 4b8fe73..dfc694b 100755
--- a/inxi.1
+++ b/inxi.1
@@ -1,4 +1,4 @@
-.TH INXI 1 "2016\-04\-18" inxi "inxi manual"
+.TH INXI 1 "2016\-08\-25" inxi "inxi manual"
.SH NAME
inxi \- Command line system information script for console and IRC
.SH SYNOPSIS
@@ -157,7 +157,9 @@ Because dmidecode data is extremely unreliable, inxi will try to make best guess
.B \-M
Show machine data. Motherboard, Bios, and if present, System Builder (Like Lenovo).
Older systems/kernels without the required \fB/sys\fR data can use dmidecode instead, run as root. If using dmidecode,
-may also show bios revision as well as version. \fB\-! 33\fR can force use of \fBdmidecode\fR data instead of \fB/sys\fR.
+may also show bios revision as well as version. \fB\-! 33\fR can force use of \fBdmidecode\fR data instead of \fB/sys\fR.
+Will also attempt to show if the system was booted by BIOS, UEFI, or UEFI [Legacy]. The last one is legacy BIOS boot mode
+in a systemboard using UEFI but booted as BIOS/Legacy.
.TP
.B \-n
Show Advanced Network card information. Same as \fB\-Nn\fR. Shows interface, speed,
@@ -180,7 +182,7 @@ Show full partition information (\fB\-P\fR plus all other detected partitions).
.TP
.B \-P
Show Partition information (shows what \fB\-v 4\fR would show, but without extra data).
-Shows, if detected: \fB/ /boot /home /tmp /usr /var\fR. Use \fB\-p\fR to see all mounted partitions.
+Shows, if detected: \fB/ /boot /home /opt /tmp /usr /var /var/tmp /var/log\fR. Use \fB\-p\fR to see all mounted partitions.
.TP
.B \-r
Show distro repository data. Currently supported repo types:
@@ -601,7 +603,7 @@ You may be asked to run the inxi debugger tool which will upload a data dump of
system files for use in debugging inxi. These data dumps are very important since
they provide us with all the real system data inxi uses to parse out its report.
.TP
-inxi main website/svn/wiki, file an issue report:
+inxi main website/source/wiki, file an issue report:
.I https://github.com/smxi/inxi/issues
.TP
post on inxi developer forums:
@@ -620,7 +622,7 @@ is is a fork of locsmif's largely unmaintained yet very clever, infobash script.
Original infobash author and copyright holder:
Copyright (C) 2005\-2007 Michiel de Boer a.k.a. locsmif
-inxi version: Copyright (C) 2008\-15 Scott Rogers & Harald Hope
+inxi version: Copyright (C) 2008\-16 Scott Rogers & Harald Hope
Further fixes (listed as known): Horst Tritremmel <hjt at sidux.com>
diff --git a/inxi.1.gz b/inxi.1.gz
index 7d8f3b2..0346d10 100644
--- a/inxi.1.gz
+++ b/inxi.1.gz
Binary files differ
diff --git a/inxi.changelog b/inxi.changelog
index b8b6f57..6352de9 100755
--- a/inxi.changelog
+++ b/inxi.changelog
@@ -1,4 +1,26 @@
=====================================================================================
+Version: 2.3.1
+Patch Version: 00
+Script Date: 2016-08-25
+-----------------------------------
+Changes:
+-----------------------------------
+New version, new tarball, new man page.
+
+Basic support added for Budgie desktop detection. This is waiting more data, so the support will be
+missing the version information. Go Budgie!!
+
+Added /var/tmp and /var/log and /opt to basic partition data: -P
+This will probably not impact more than a handful of people in the world, but that's fine.
+
+Modified the static BIOS in -M to now show UEFI for actually UEFI booted systems, and, ideally,
+UEFI [Legacy] for UEFI booting in bios legacy mode, and BIOS for all others. Hopefully this will
+work ok, we'll see.
+
+-----------------------------------
+-- Harald Hope - Thu, 25 Aug 2016 19:09:52 -0700
+
+=====================================================================================
Version: 2.3.0
Patch Version: 00
Script Date: 2016-04-18