-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change version select&&add Catelina Version(did't test Big Sur)
Signed-off-by: Max-Cheng <[email protected]>
- Loading branch information
Showing
2 changed files
with
37 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
package config | ||
|
||
type Vertion struct { | ||
Vs string | ||
BID string | ||
SN string | ||
SN string | ||
Vs string | ||
} | ||
|
||
//Vs:OS name | ||
var Path = "com.apple.recovery.boot" | ||
var Select = []Vertion{Last,Mojave,High_Sierra} | ||
var Last = Vertion{BID:"Mac-E43C1C25D4880AD6",SN:"00000000000000000",Vs:"Last Version(最新版)"} | ||
var Mojave =Vertion{BID:"Mac-7BA5B2DFE22DDD8C",SN:"00000000000KXPG00",Vs:"Mojave"} | ||
var High_Sierra = Vertion{BID:"Mac-7BA5B2D9E42DDD94",SN:"00000000000J80300",Vs:"High Sierra"} | ||
var Select = []Vertion{Default, Last, Catelina, Mojave, High_Sierra} | ||
var Last = Vertion{BID: "Mac-E43C1C25D4880AD6", SN: "00000000000000000", Vs: "Last Version(最新版)"} | ||
var Default = Vertion{BID: "Mac-E43C1C25D4880AD6", SN: "00000000000GDVQ00", Vs: "Default(默认)"} | ||
var Catelina = Vertion{BID: "Mac-00BE6ED71E35EB8", SN: "00000000000000000", Vs: "Catelina"} | ||
var Mojave = Vertion{BID: "Mac-7BA5B2DFE22DDD8C", SN: "00000000000KXPG00", Vs: "Mojave"} | ||
var High_Sierra = Vertion{BID: "Mac-7BA5B2D9E42DDD94", SN: "00000000000J80300", Vs: "High Sierra"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters