-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
37 lines (33 loc) · 1.69 KB
/
Makefile
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
.PHONY: all
all: TinyEMU-iOS.xcodeproj
TinyEMU-iOS.xcodeproj: project.yml Assets/Machine.bundle
xcodegen
Assets/Machine.bundle: Downloads/kernel.tar.gz Downloads/root.img.bz2
rm -rf [email protected]
mkdir -p [email protected]
tar -O -xf Downloads/kernel.tar.gz diskimage-linux-riscv-2018-09-23/bbl64.bin >[email protected]/bbl.bin
tar -O -xf Downloads/kernel.tar.gz diskimage-linux-riscv-2018-09-23/kernel-riscv64.bin >[email protected]/kernel.bin
bzcat Downloads/root.img.bz2 >[email protected]/root.img
chmod -x [email protected]/*
@echo -n '<?xml version="1.0" encoding="UTF-8"?>' >[email protected]/Machine.plist
@echo '<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">' >[email protected]/Machine.plist
@echo '<plist version="1.0">' >>[email protected]/Machine.plist
@echo '<dict/>' >>[email protected]/Machine.plist
@echo '</plist>' >>[email protected]/Machine.plist
plutil -insert BIOS -string bbl.bin [email protected]/Machine.plist
plutil -insert Kernel -string kernel.bin [email protected]/Machine.plist
plutil -insert KernelCommandLine -string 'console=hvc0 root=/dev/vda ro' [email protected]/Machine.plist
plutil -insert RootDrive -string root.img [email protected]/Machine.plist
mv [email protected] $@
Downloads/kernel.tar.gz:
mkdir -p Downloads
curl -L -o [email protected] https://bellard.org/tinyemu/diskimage-linux-riscv-2018-09-23.tar.gz
@echo '808ecc1b32efdd76103172129b77b46002a616dff2270664207c291e4fde9e14 Downloads/kernel.tar.gz.tmp' >[email protected]
shasum -a 256 -c [email protected]
mv [email protected] $@
Downloads/root.img.bz2:
mkdir -p Downloads
curl -L -o [email protected] https://github.com/fernandotcl/TinyEMU-iOS-Images/releases/download/2019-04-01/root.img.bz2
@echo '3cddbcf608aa2393b82a6769623713305e2aa29cc271bb79b2ecfd163f4575fa Downloads/root.img.bz2.tmp' >[email protected]
shasum -a 256 -c [email protected]
mv [email protected] $@