-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmacToIso.sh
More file actions
300 lines (260 loc) · 8.47 KB
/
Copy pathmacToIso.sh
File metadata and controls
300 lines (260 loc) · 8.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#!/bin/bash
################################
# OS X Install ISO Creater #
# #
# Author: shela #
################################
#######################################
# Declarations
#######################################
shopt -s nocasematch
readonly TEMP_DIR=$(mktemp -d /tmp/osx-image.XXX)
readonly INPUT_MOUNT="${TEMP_DIR}/input_mount"
readonly OUTPUT_MOUNT="${TEMP_DIR}/output_mount"
readonly BUILD_MOUNT="${TEMP_DIR}/build_mount"
readonly SPARSE_IMAGE="${TEMP_DIR}/osx.sparseimage"
readonly DEFAULT_OUTPUT_DIR="${HOME}/Desktop"
trap cleanup EXIT
#######################################
# Display information message
#######################################
info() {
echo -e "\033[0;32m${1}\033[0m"
}
#######################################
# Display error message
#######################################
error() {
echo -e "\033[0;31m${1}\033[0;39m" >&2
}
#######################################
# Create install iso image
#######################################
create_image() {
local in=${1}
local out=${2%/}
# Create output directory
if [ ! -d "${out}" ]; then
info "Destination directory ${out} does not exists. Creating..."
mkdir -p "${out}"
if [[ $? -ne 0 ]]; then
error "Could not create output directory."
exit 1
fi
fi
# Mount the installer image
info "Attaching $(basename "${in}")..."
hdiutil attach "${in}" -noverify -nobrowse -mountpoint "${INPUT_MOUNT}"
if [[ $? -ne 0 ]]; then
error "Could not mount $(basename "${in}")."
exit 1
fi
# Create sparse image with a Single Partition UDIF
info "Creating sparse image..."
hdiutil create -o "${TEMP_DIR}/osx" -size 7316m -type SPARSE -layout SPUD -fs HFS+J
if [[ $? -ne 0 ]]; then
error "Could not create sparse image."
exit 1
fi
# Mount the sparse image
info "Mounting sparse image..."
hdiutil attach "${SPARSE_IMAGE}" -noverify -nobrowse -mountpoint "${BUILD_MOUNT}"
if [[ $? -ne 0 ]]; then
error "Could not attach sparse image."
exit 1
fi
# Restore the Base System into the sparse image
info "Restoring BaseSystem.dmg..."
asr restore -source "${INPUT_MOUNT}/BaseSystem.dmg" -target "${BUILD_MOUNT}" -noprompt -noverify -erase
if [[ $? -ne 0 ]]; then
error "Could not mount BaseSystem.dmg."
exit 1
fi
if [[ -d "/Volumes/OS X Base System" ]]; then
declare -r BASE_SYSTEM_PATH="/Volumes/OS X Base System"
else
# for Mac OS X Lion
declare -r BASE_SYSTEM_PATH="/Volumes/Mac OS X Base System"
fi
declare -r PLIST="${BASE_SYSTEM_PATH}/System/Library/CoreServices/SystemVersion.plist"
# Get installer OS product version
local os_version
os_version=$(/usr/libexec/PlistBuddy -c "Print :ProductVersion" "${PLIST}")
if [[ $? -ne 0 ]]; then
error "Could not get Product Version."
exit 1
fi
# Get installer OS product build version
local os_build
os_build=$(/usr/libexec/PlistBuddy -c "Print :ProductBuildVersion" "${PLIST}")
if [[ $? -ne 0 ]]; then
error "Could not get Product Build Version."
exit 1
fi
info "Detected OS X version: ${os_version}, build ${os_build}"
declare -r FILE_PATH="${out}/OS.X.${os_version}.${os_build}"
# Remove Packages link and replace with actual files
info "Replacing Packages link with actual files..."
rm "${BASE_SYSTEM_PATH}/System/Installation/Packages"
if [[ $? -ne 0 ]]; then
error "Could not remove Packages link."
exit 1
fi
cp -rp "${INPUT_MOUNT}/Packages" "${BASE_SYSTEM_PATH}/System/Installation/"
if [[ $? -ne 0 ]]; then
error "Could not replace Packages link with actual files."
exit 1
fi
# Copy installer dependencies
info "Copying dependency files..."
cp -rp "${INPUT_MOUNT}/BaseSystem.chunklist" "${BASE_SYSTEM_PATH}/BaseSystem.chunklist"
if [[ $? -ne 0 ]]; then
error "Could not copy dependency files."
exit 1
fi
cp -rp "${INPUT_MOUNT}/BaseSystem.dmg" "${BASE_SYSTEM_PATH}/BaseSystem.dmg"
if [[ $? -ne 0 ]]; then
error "Could not copy dependency files."
exit 1
fi
# Unmount the Base System image
hdiutil detach "${BASE_SYSTEM_PATH}"
# Unmount the installer image
hdiutil detach "${INPUT_MOUNT}"
# Resize sparse image
#info "Resizing sparse image..."
#local size
#size=$(hdiutil resize -limits "${SPARSE_IMAGE}" \
# | tail -n 1 \
# | awk '{ print $1 }')
#echo "Size= ${size}b"
#hdiutil resize -size "${size}b" "${SPARSE_IMAGE}"
#if [[ $? -ne 0 ]]; then
# error "Could not resize sparse iamge."
# exit 1
#fi
# Convert sparse image to iso
info "Creating iso image..."
hdiutil convert "${SPARSE_IMAGE}" -format UDTO -o "${FILE_PATH}"
if [[ $? -ne 0 ]]; then
error "Could not create iso image."
exit 1
fi
# Rename the sparse image
#info "Renaming sparse image..."
#mv "${SPARSE_IMAGE}" "${FILE_PATH}.dmg"
#if [[ $? -ne 0 ]]; then
# error "Could not rename sparse image."
# exit 1
#fi
# Rename the cdr image
info "Renaming cdr image..."
mv "${FILE_PATH}.cdr" "${FILE_PATH}.iso"
if [[ $? -ne 0 ]]; then
error "Could not rename cdr image."
exit 1
fi
# Show completion message
info "Complete!!!"
#info " Path of dmg image: ${FILE_PATH}.dmg"
info " Path of iso image: ${FILE_PATH}.iso"
}
#######################################
# Cleanup directories and files
#######################################
cleanup() {
if [[ -d "${BUILD_MOUNT}" ]]; then
hdiutil detach "${BUILD_MOUNT}"
fi
if [[ -d "${OUTPUT_MOUNT}" ]]; then
hdiutil detach "${OUTPUT_MOUNT}"
fi
if [[ -d "${INPUT_MOUNT}" ]]; then
hdiutil detach "${INPUT_MOUNT}"
fi
if [[ -f "${SPARSE_IMAGE}" ]]; then
rm "${SPARSE_IMAGE}"
fi
rmdir "${TEMP_DIR}"
shopt -u nocasematch
}
#######################################
# main
#######################################
main() {
echo -e "\033[1;4mOS X Install ISO Creater\033[0m"
cat << EOT
Support OS X Version: 10.6, 10.7, 10.8, 10.9, 10.10, 10.11, 10.12, 10.13, and 10.14
You need to download (Mac) OS X Installer from the Mac App Store and save it to the Application folder - its default location.
Or, you can create iso from InstallESD.dmg you specified.
EOT
declare -a menu_items=("Mac OS X 10.7 (Lion)" \
"OS X 10.8 (Mountain Lion)" \
"OS X 10.9 (Mavericks)" \
"OS X 10.10 (Yosemite)" \
"OS X 10.11 (El Capitan)" \
"macOS 10.12 (Sierra)" \
"macOS 10.13 (High Sierra)" \
"macOS 10.14 (Mojave)")
declare -a osx_names=("Mac OS X Lion" \
"OS X Mountain Lion" \
"OS X Mavericks" \
"OS X Yosemite" \
"OS X El Capitan" \
"macOS Sierra" \
"macOS High Sierra" \
"macOS Mojave")
declare -r DMG_PATH_HEAD="/Applications/Install "
declare -r DMG_PATH_TAIL=".app/Contents/SharedSupport/InstallESD.dmg"
local -i i=0
local dmg_path
local output_dir
# Check if installer exists
for name in "${osx_names[@]}"; do
dmg_path="${DMG_PATH_HEAD}${name}${DMG_PATH_TAIL}"
if [[ ! -f "${dmg_path}" ]]; then
unset menu_items[${i}]
unset osx_names[${i}]
fi
let i++
done
# Remove non-existent versions from array
menu_items=("${menu_items[@]}")
osx_names=("${osx_names[@]}")
# Display menu items
i=0
if [[ ${#menu_items[@]} -eq 0 ]]; then
echo -e "No (Mac) OS X installer found."
echo -e "Please Select:"
else
echo "Following ${#menu_items[@]} OS X installer(s) found."
echo -e "Please Select:\n"
for name in "${menu_items[@]}"; do
echo "$((i + 1))) ${menu_items[${i}]}"
let i++
done
fi
echo -e "\n0) Specifiy InstallESD.dmg path"
echo -e "\nq) Quit\n"
# Read user selection
while : ; do
read -rp $'\e[1m'"Enter a number or 'q': "$'\e[0m' selection
if [ "${selection}" -eq 0 ] 2> /dev/null; then
read -ep $'\e[1m'"Enter the InstallESD.dmg path: "$'\e[0m' dmg_path
break
elif [ "${selection}" -gt 0 ] 2> /dev/null && [ "${selection}" -le ${i} ] 2> /dev/null; then
dmg_path="${DMG_PATH_HEAD}${osx_names[$((selection - 1))]}${DMG_PATH_TAIL}"
break
elif [ "${selection}" = "q" ]; then
exit
break
fi
done
# Read user output directory
read -ep $'\e[1m'"Enter the output directory (default: ${DEFAULT_OUTPUT_DIR}): "$'\e[0m' output_dir
if [[ -z "${output_dir}" ]]; then
output_dir="${DEFAULT_OUTPUT_DIR}"
fi
create_image "${dmg_path}" "${output_dir}"
}
main