mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-12 09:54:36 +01:00
99e9fc5d89
Themes can be downloaded without git. The parser allows users to chose the Github user and the repository name, and so load themes from forks or any repo that has compatible directories structure (the repository must contains only themes, at first level).
112 lines
2.8 KiB
Swift
112 lines
2.8 KiB
Swift
//
|
|
// NVRAM.swift
|
|
// Clover
|
|
//
|
|
// Created by vector sigma on 30/10/2019.
|
|
// Copyright © 2019 CloverHackyColor. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
// MARK: "/usr/sbin/nvram"
|
|
let nvram_cmd = "/usr/sbin/nvram"
|
|
|
|
// MARK: Get NVRAM
|
|
func getNVRAM() -> NSMutableDictionary? {
|
|
var ref: io_registry_entry_t
|
|
var masterPort = mach_port_t()
|
|
var oResult: kern_return_t
|
|
var result: kern_return_t
|
|
oResult = IOMasterPort(bootstrap_port, &masterPort)
|
|
|
|
if oResult != KERN_SUCCESS {
|
|
return nil
|
|
}
|
|
|
|
ref = IORegistryEntryFromPath(masterPort, "IODeviceTree:/options")
|
|
if ref == 0 {
|
|
return nil
|
|
}
|
|
var dict : Unmanaged<CFMutableDictionary>?
|
|
result = IORegistryEntryCreateCFProperties(ref, &dict, kCFAllocatorDefault, 0)
|
|
if result != KERN_SUCCESS {
|
|
IOObjectRelease(ref)
|
|
return nil
|
|
}
|
|
IOObjectRelease(ref)
|
|
return dict?.takeRetainedValue()
|
|
}
|
|
|
|
/// Get a single nvram variable
|
|
func getNVRAM(variable name: String) -> String? {
|
|
var value : String? = nil
|
|
var ref: io_registry_entry_t
|
|
var masterPort = mach_port_t()
|
|
var oResult: kern_return_t
|
|
oResult = IOMasterPort(bootstrap_port, &masterPort)
|
|
|
|
if oResult != KERN_SUCCESS {
|
|
return nil
|
|
}
|
|
|
|
ref = IORegistryEntryFromPath(masterPort, "IODeviceTree:/options")
|
|
if ref == 0 {
|
|
return nil
|
|
}
|
|
|
|
let vref = IORegistryEntryCreateCFProperty(ref,
|
|
name as CFString,
|
|
kCFAllocatorDefault, 0)
|
|
if (vref != nil) {
|
|
let data = vref?.takeRetainedValue() as! Data
|
|
var cleanedData = Data()
|
|
for i in 0..<data.count {
|
|
if data[i] != 0x00 {
|
|
cleanedData.append(data[i])
|
|
}
|
|
}
|
|
|
|
value = String(bytes: cleanedData, encoding: .utf8)
|
|
}
|
|
|
|
IOObjectRelease(ref)
|
|
|
|
return value
|
|
}
|
|
|
|
// MARK: set NVRAM key
|
|
func setNVRAM(key: String, stringValue: String) {
|
|
var cmd : String = "do shell script \""
|
|
cmd += "sudo \(nvram_cmd) \(key)=\(stringValue)" // sudo required otherwise wont work!
|
|
cmd += "\" with administrator privileges"
|
|
|
|
//DispatchQueue.global(qos: .background).async {
|
|
let script: NSAppleScript? = NSAppleScript(source: cmd)
|
|
var error : NSDictionary? = nil
|
|
script?.executeAndReturnError(&error)
|
|
if error != nil {
|
|
NSSound.beep()
|
|
print(error!.description)
|
|
}
|
|
//}
|
|
}
|
|
|
|
// MARK: delete NVRAM key
|
|
func deleteNVRAM(key: String) {
|
|
var cmd : String = "do shell script \""
|
|
cmd += "sudo \(nvram_cmd) -d \(key)" // sudo required otherwise wont work!
|
|
cmd += "\" with administrator privileges"
|
|
//DispatchQueue.global(qos: .background).async {
|
|
var error : NSDictionary? = nil
|
|
let script: NSAppleScript? = NSAppleScript(source: cmd)
|
|
script?.executeAndReturnError(&error)
|
|
if error != nil {
|
|
NSSound.beep()
|
|
print(error!.description)
|
|
}
|
|
//}
|
|
}
|
|
|
|
|
|
|