forked from redox-os/redox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.sh
executable file
·246 lines (234 loc) · 5.84 KB
/
bootstrap.sh
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
#! /bin/bash
banner() {
echo "|------------------------------------------|"
echo "|----- Welcome to the redox bootstrap -----|"
echo "|------------------------------------------|"
}
osx()
{
echo "Detected OSX!"
if [ ! -z "$(which brew)" ]; then
echo "Homebrew detected! Now updating..."
brew update
if [ -z "$(which git)" ]; then
echo "Now installing git..."
brew install git
fi
if [ "$2" == "qemu" ]; then
if [ -z "$(which qemu-system-i386)" ]; then
echo "Installing qemu..."
brew install qemu
else
echo "QEMU already installed!"
fi
else
if [ -z "$(which virtualbox)" ]; then
echo "Now installing virtualbox..."
brew cask install virtualbox
else
echo "Virtualbox already installed!"
fi
fi
else
echo "Homebrew does not appear to be installed! Would you like me to install it?"
printf "(Y/n): "
read -r installit
if [ "$installit" == "Y" ]; then
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
else
echo "Will not install, now exiting..."
exit
fi
fi
echo "Cloning Redox repo"
git clone -b "$1" --recursive https://github.com/redox-os/redox.git
echo "Running Redox setup script..."
sh redox/setup/osx-homebrew.sh
echo "Running rust install script"
sh redox/setup/binary.sh
endMessage
}
archLinux()
{
echo "Detected Arch Linux"
echo "Updating system..."
sudo pacman -Syu
if [ -z "$(which git)" ]; then
echo "Installing git..."
sudo pacman -S git
fi
if [ "$2" == "qemu" ]; then
if [ -z "$(which qemu-system-i386)" ]; then
echo "Installing QEMU..."
sudo pacman -S qemu
else
echo "QEMU already installed!"
fi
fi
echo "Cloning redox repo..."
git clone -b "$1" --recursive https://github.com/redox-os/redox.git
echo "Running Redox setup scripts..."
sh redox/setup/arch.sh
echo "Running rust installer..."
sh redox/setup/binary.sh
}
ubuntu()
{
echo "Detected Ubuntu/Debian"
echo "Updating system..."
sudo "$3" update
echo "Installing required packages..."
sudo "$3" install build-essential libc6-dev-i386 nasm curl file git
if [ "$2" == "qemu" ]; then
if [ -z "$(which qemu-system-i386)" ]; then
echo "Installing QEMU..."
sudo "$3" install qemu-system-x86 qemu-kvm
else
echo "QEMU already installed!"
fi
else
if [ -z "$(which virtualbox)" ]; then
echo "Installing Virtualbox..."
sudo "$3" install virtualbox
else
echo "Virtualbox already installed!"
fi
fi
echo "Cloning Redox repo"
git clone -b "$1" --recursive https://github.com/redox-os/redox.git
echo "Running rust installer..."
sh redox/setup/binary.sh
}
fedora()
{
echo "Detected Fedora"
if [ -z "$(which git)" ]; then
echo "Installing git..."
sudo yum install git-all
fi
if [ "$2" == "qemu" ]; then
if [ -z "$(which qemu-system-i386)" ]; then
echo "Installing QEMU..."
sudo yum install qemu-system-x86 qemu-kvm
else
echo "QEMU already installed!"
fi
else
if [ -z "$(which virtualbox)" ]; then
echo "Installing virtualbox..."
sudo yum install virtualbox
else
echo "Virtualbox already installed!"
fi
fi
echo "Cloning Redox repo"
git clone -b "$1" --recursive https://github.com/redox-os/redox.git
echo "Installing necessary build tools..."
sudo dnf install gcc gcc-c++ glibc-devel.i686 nasm make
echo "Running rust installer"
sh redox/setup/binary.sh
}
suse()
{
echo "Detected a suse"
if [ -z "$(which git)" ]; then
echo "Installing git..."
zypper install git
fi
if [ "$2" == "qemu" ]; then
if [ -z "$(which qemu-system-i386)" ]; then
echo "Installing QEMU..."
sudo zypper install qemu-x86 qemu-kvm
else
echo "QEMU already installed!"
fi
else
if [ -z "$(which virtualbox)" ]; then
echo "Please install Virtualbox and re-run this script,"
echo "or run with -e qemu"
exit
else
echo "Virtualbox already installed!"
fi
fi
echo "Cloning Redox repo..."
git clone -b "$1" --recursive https://github.com/redox-os/redox.git
echo "Installing necessary build tools..."
sudo zypper install gcc gcc-c++ glibc-devel-32bit nasm make
echo "Running rust installer"
sh redox/setup/binary.sh
}
usage()
{
echo "------------------------"
echo "|Redox bootstrap script|"
echo "------------------------"
echo "Usage: ./bootstrap.sh"
echo "OPTIONS:"
echo
echo " -h,--help Show this prompt"
echo " -b [branch] Specify a branch of redox to clone"
echo " -u [branch] Update git repo and update rust"
echo " If blank defaults to master"
echo " -e [emulator] Install specific emulator, virtualbox or qemu"
echo " -p [package Choose an Ubuntu package manager, apt-fast or"
echo " manager] aptitude"
echo "EXAMPLES:"
echo
echo "./bootstrap.sh -b buddy -e qemu"
exit
}
updater()
{
git pull origin "$1"
sh setup/binary.sh
exit
}
endMessage()
{
echo "Cleaning up..."
rm bootstrap.sh
echo "---------------------------------------"
echo "Well it looks like you are ready to go!"
echo "---------------------------------------"
echo " cd redox"
echo " make all"
echo " make virtualbox or qemu"
echo
echo "If make qemu fails complaining about kvm"
echo "run \'make qemu_no_kvm\'"
echo
echo " Good luck!"
exit
}
if [ "$1" == "-h" ]; then
usage
fi
if [ "$1" == "-u" ]; then
if [ -n "$2" ]; then
updater "$2"
else
updater "master"
fi
fi
branch="master"
emulator="qemu"
defpackman="apt-get"
while getopts ":b:e:p:" opt
do
case "$opt" in
b) branch="$OPTARG";;
e) emulator="$OPTARG";;
p) defpackman="$OPTARG";;
\?) echo "I don't know what to do with that option, try -h for help"; exit;;
esac
done
banner
if [ "Darwin" == "$(uname -s)" ]; then
osx "$branch" "$emulator"
else
which pacman && { archLinux "$branch" "$emulator"; endMessage; }
which apt-get && { ubuntu "$branch" "$emulator" "$defpackman"; endMessage; }
which yum && { fedora "$branch" "$emulator"; endMessage; }
which zypper && { suse "$branch" "$emulator"; endMessage; }
fi