hackmac 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bin/efi +6 -3
- data/hackmac.gemspec +2 -2
- data/lib/hackmac/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 527e2b1122badb306396289a55eadd07b05637e3c5d86ab4b9dc68cfcb097ced
|
|
4
|
+
data.tar.gz: 46d344882a7a0ce9ad8dd6503701491934a99655881b281d2a315812f84dd269
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c3d8d74bb8f4b4c373b16dca4ec9a7576977570283338567f1569980380f1692470176d2b82f41c5868123ac7842e4186554116d0e6e3a95e8742608de86f98
|
|
7
|
+
data.tar.gz: 6db81624193f35013dba6d1097cd7dbe256868af1769dec425dfa3ebc84dbb96454302a69a9f36b4f16b24fba749201341f444f894a110d0a2f973340f9497e9
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.3
|
data/bin/efi
CHANGED
|
@@ -81,7 +81,7 @@ def usage
|
|
|
81
81
|
|
|
82
82
|
The devices have to be different.
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
kexts list kexts in L/E and compare versions with clover kexts
|
|
85
85
|
|
|
86
86
|
argument DEVICE (defaults to #{default_dev})
|
|
87
87
|
|
|
@@ -109,9 +109,9 @@ when 'clone'
|
|
|
109
109
|
to == 'boot' and to = dev
|
|
110
110
|
from != to or fail "cloning only allowed from one partition to another"
|
|
111
111
|
clone from: from, to: to
|
|
112
|
-
when '
|
|
112
|
+
when 'kexts'
|
|
113
113
|
begin
|
|
114
|
-
mdev = ARGV.shift ||
|
|
114
|
+
mdev = ARGV.shift || 'EFI'
|
|
115
115
|
x %{sudo diskutil mount "#{mdev}"}
|
|
116
116
|
on_efi = Dir["/Volumes/#{mdev}/EFI/CLOVER/kexts/Other/*.kext"].map { |path|
|
|
117
117
|
Kext.new(path: path)
|
|
@@ -130,6 +130,9 @@ when 'kext'
|
|
|
130
130
|
ensure
|
|
131
131
|
x %{sudo diskutil umount "#{mdev}"}
|
|
132
132
|
end
|
|
133
|
+
when 'kext'
|
|
134
|
+
path = ARGV.shift or fail 'need app dir'
|
|
135
|
+
puts Kext.new(path: path)
|
|
133
136
|
when 'boot'
|
|
134
137
|
disks = Disks.new
|
|
135
138
|
efis = []
|
data/hackmac.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: hackmac 0.0.
|
|
2
|
+
# stub: hackmac 0.0.3 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "hackmac".freeze
|
|
6
|
-
s.version = "0.0.
|
|
6
|
+
s.version = "0.0.3"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib".freeze]
|
data/lib/hackmac/version.rb
CHANGED