chimney (nix old logs)
[webi-installers/.git] / macos / macos.bash
1 # title: macOS
2 # homepage: https://bootableinstaller.com/macos/
3 # tagline: Bootable macOS Installer
4 # description: |
5 #   Downloads the official OS X / macOS dmg from Apple to create bootable installers - works from macOS, Linux, or even Windows (through VirtualBox).
6 # examples: |
7 #
8 #   Use with Balena Etcher to burn ISO to USB, or boot with VirtualBox.
9 #
10 #   ```txt
11 #   Created ~/Downloads/el-capitan.iso
12 #   ```
13
14 set -e
15 set -u
16
17 webi_download
18
19 pushd ~/Downloads 2>&1 >/dev/null
20
21 if [ "Darwin" == "$(uname -s)" ]; then
22   curl -fsSL 'https://gist.githubusercontent.com/solderjs/8c36d132250163011c83bad8284975ee/raw/5a291955813743c20c12ca2d35c7b1bb34f8aecc/create-bootable-installer-for-os-x-el-capitan.sh' -o create-bootable-installer-for-os-x-el-capitan.sh
23   bash create-bootable-installer-for-os-x-el-capitan.sh
24 else
25   curl -fsSL 'https://gist.githubusercontent.com/solderjs/9834a45a6c21a41e8882698a00b55787/raw/c43061cd0c53ec675996f5cb66c7077e666aabd4/install-mac-tools.sh' -o install-mac-tools.sh
26   # TODO add xar to webinstall.dev
27   sudo apt install libz-dev # needed for xar
28   bash install-mac-tools.sh
29   echo "WARN: may need a restart for hfsplus to be recognized by the kernel"
30
31   curl -fsSL 'https://gist.github.com/solderjs/04fd06560a8465a695337eb502f5b0e9/raw/0a06fb4dce91399d374d9a12958dabb48a9bd42a/empty.7400m.img.bz2' -o empty.7400m.img.bz2
32
33   curl -fsSL 'https://gist.githubusercontent.com/solderjs/9834a45a6c21a41e8882698a00b55787/raw/c43061cd0c53ec675996f5cb66c7077e666aabd4/linux-create-bootable-macos-recovery-image.sh' -o linux-create-bootable-macos-recovery-image.sh
34   bash linux-create-bootable-macos-recovery-image.sh
35 fi
36
37 echo ""
38 echo "Created $HOME/Downloads/el-capitan.iso"
39 echo ""
40
41 popd 2>&1 >/dev/null