Skip to content

Commit

Permalink
Fix MaxBIOSVersion value
Browse files Browse the repository at this point in the history
  • Loading branch information
khronokernel committed Jan 11, 2021
1 parent 4066454 commit f32fdd1
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
Binary file modified Docs/Configuration.pdf
Binary file not shown.
5 changes: 3 additions & 2 deletions Docs/Configuration.tex
Original file line number Diff line number Diff line change
Expand Up @@ -4631,8 +4631,9 @@ \subsection{Generic Properties}\label{platforminfogeneric}
\texttt{MaxBIOSVersion}\\
\textbf{Type}: \texttt{plist\ boolean}\\
\textbf{Failsafe}: \texttt{false}\\
\textbf{Description}: Sets \texttt{BIOSVersion} to \texttt{9999.999.999}, recommended for legacy
Macs when using \texttt{Automatic} PlatformInfo to avoid BIOS updates in officially not supported macOS.
\textbf{Description}: Sets \texttt{BIOSVersion} to \texttt{9999.999.999.999.999}, recommended for legacy
Macs when using \texttt{Automatic} PlatformInfo to avoid BIOS updates in unofficially supported macOS
versions.

\item
\texttt{SystemMemoryStatus}\\
Expand Down
Binary file modified Docs/Differences/Differences.pdf
Binary file not shown.
9 changes: 5 additions & 4 deletions Docs/Differences/Differences.tex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
\documentclass[]{article}
%DIF LATEXDIFF DIFFERENCE FILE
%DIF DEL PreviousConfiguration.tex Mon Jan 11 15:04:37 2021
%DIF ADD ../Configuration.tex Mon Jan 11 16:01:00 2021
%DIF DEL PreviousConfiguration.tex Tue Jan 5 20:10:35 2021
%DIF ADD ../Configuration.tex Mon Jan 11 07:20:41 2021

\usepackage{lmodern}
\usepackage{amssymb,amsmath}
Expand Down Expand Up @@ -4691,8 +4691,9 @@ \subsection{Generic Properties}\label{platforminfogeneric}
\DIFaddbegin \texttt{\DIFadd{MaxBIOSVersion}}\\
\textbf{\DIFadd{Type}}\DIFadd{: }\texttt{\DIFadd{plist\ boolean}}\\
\textbf{\DIFadd{Failsafe}}\DIFadd{: }\texttt{\DIFadd{false}}\\
\textbf{\DIFadd{Description}}\DIFadd{: Sets }\texttt{\DIFadd{BIOSVersion}} \DIFadd{to }\texttt{\DIFadd{9999.999.999}}\DIFadd{, recommended for legacy
Macs when using }\texttt{\DIFadd{Automatic}} \DIFadd{PlatformInfo to avoid BIOS updates in officially not supported macOS.
\textbf{\DIFadd{Description}}\DIFadd{: Sets }\texttt{\DIFadd{BIOSVersion}} \DIFadd{to }\texttt{\DIFadd{9999.999.999.999.999}}\DIFadd{, recommended for legacy
Macs when using }\texttt{\DIFadd{Automatic}} \DIFadd{PlatformInfo to avoid BIOS updates in unofficially supported macOS
versions.
}

\item
Expand Down
Binary file modified Docs/Errata/Errata.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion Platform/OpenCore/OpenCorePlatform.c
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ OcPlatformUpdateSmbios (
// Override default BIOSVersion.
//
if (Config->PlatformInfo.Generic.MaxBIOSVersion) {
Data.BIOSVersion = "9999.999.999";
Data.BIOSVersion = "9999.999.999.999.999";
}

if (MacInfo->DataHub.SmcRevision != NULL) {
Expand Down

0 comments on commit f32fdd1

Please sign in to comment.