-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-archlinux-with-alis.sh
executable file
·251 lines (213 loc) · 8.19 KB
/
build-archlinux-with-alis.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
247
248
249
250
251
#!/bin/bash
#set -e
##################################################################################################################
# Author : Erik Dubois
# Website : https://www.erikdubois.be
# Website : https://www.arcolinux.info
# Website : https://www.arcolinux.com
# Website : https://www.arcolinuxd.com
# Website : https://www.arcolinuxb.com
# Website : https://www.arcolinuxiso.com
# Website : https://www.arcolinuxforum.com
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
echo
echo "################################################################## "
tput setaf 2
echo "Phase 1 : "
echo "- Setting General parameters"
tput sgr0
echo "################################################################## "
echo
isoLabel='archlinux-'$(date +%Y.%m.%d)'-x86_64.iso'
# setting of the general parameters
archisoRequiredVersion="archiso 61-1"
<<<<<<< HEAD
buildFolder=$HOME"/AA-build"
outFolder=$HOME"/AA-Out"
=======
buildFolder=$HOME"Desktop/Alis-build"
outFolder=$HOME"Desktop/Alis-Out"
>>>>>>> 859ee9ce65eca81d50d62a15202028ee610d5764
archisoVersion=$(sudo pacman -Q archiso)
echo "################################################################## "
echo "Do you have the right archiso version? : "$archisoVersion
echo "What is the required archiso version? : "$archisoRequiredVersion
echo "Build folder : "$buildFolder
echo "Out folder : "$outFolder
echo "################################################################## "
if [ "$archisoVersion" == "$archisoRequiredVersion" ]; then
tput setaf 2
echo "##################################################################"
echo "Archiso has the correct version. Continuing ..."
echo "##################################################################"
tput sgr0
else
tput setaf 1
echo "###################################################################################################"
echo "You need to install the correct version of Archiso"
echo "Use 'sudo downgrade archiso' to do that"
echo "or update your system"
echo "###################################################################################################"
tput sgr0
#exit 1
fi
echo
echo "################################################################## "
tput setaf 2
echo "Phase 2 :"
echo "- Checking if archiso is installed"
echo "- Making mkarchiso verbose"
tput sgr0
echo "################################################################## "
echo
package="archiso"
#----------------------------------------------------------------------------------
#checking if application is already installed or else install with aur helpers
if pacman -Qi $package &> /dev/null; then
echo "Archiso is already installed"
else
#checking which helper is installed
if pacman -Qi yay &> /dev/null; then
echo "################################################################"
echo "######### Installing with yay"
echo "################################################################"
yay -S --noconfirm $package
elif pacman -Qi paru &> /dev/null; then
echo "################################################################"
echo "######### Installing with paru"
echo "################################################################"
paru -S --noconfirm --needed --noedit $package
fi
# Just checking if installation was successful
if pacman -Qi $package &> /dev/null; then
echo "################################################################"
echo "######### "$package" has been installed"
echo "################################################################"
else
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
echo "!!!!!!!!! "$package" has NOT been installed"
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
exit 1
fi
fi
echo
echo "Making mkarchiso verbose"
sudo sed -i 's/quiet="y"/quiet="n"/g' /usr/bin/mkarchiso
echo
echo "################################################################## "
tput setaf 2
echo "Phase 3 :"
echo "- Deleting the build folder if one exists"
echo "- Copying the Archiso folder to build folder"
echo "- Cloning ALIS"
tput sgr0
echo "################################################################## "
echo
echo "Deleting the build folder if one exists - takes some time"
[ -d $buildFolder ] && sudo rm -rf $buildFolder
echo
echo "Copying the Archiso folder to build work"
echo
mkdir $buildFolder
cp -r /usr/share/archiso/configs/releng/ $buildFolder/archiso
echo
echo "Git clone ALIS"
mkdir $buildFolder/archiso/airootfs/alis
git clone https://github.com/SudoSwole/alis $buildFolder/archiso/airootfs/alis
#mkdir $buildFolder/archiso/airootfs/alis-dev
#git clone https://github.com/arcolinuxiso/alis-dev $buildFolder/archiso/airootfs/alis-dev
echo
echo "################################################################## "
tput setaf 2
echo "Phase 4 :"
echo "- Adding packages to the pgklist"
tput sgr0
echo "################################################################## "
echo
echo
echo "Adding more packages to the list"
echo "git" | tee -a $buildFolder/archiso/packages.x86_64
echo
echo "################################################################## "
tput setaf 2
echo "Phase 5 : "
echo "- Adding time to /etc/dev-rel"
echo "- profile.def"
echo "- nanorc for syntax"
tput sgr0
echo "################################################################## "
echo
echo "Adding time to /etc/dev-rel"
date_build=$(date -d now)
touch $buildFolder/archiso/airootfs/etc/dev-rel
echo "Arch Linux iso build on : "$date_build | tee -a $buildFolder/archiso/airootfs/etc/dev-rel
FIND='livecd-sound'
REPLACE=' ["/alis/start.sh"]="0:0:755"'
find $buildFolder/archiso/profiledef.sh -type f -exec sed -i "/$FIND/a $REPLACE" {} \;
# FIND='livecd-sound'
# REPLACE=' ["/alis-dev/start.sh"]="0:0:755"'
# find $buildFolder/archiso/profiledef.sh -type f -exec sed -i "/$FIND/a $REPLACE" {} \;
echo "Copying Personal files over"
mkdir $buildFolder/archiso/airootfs/etc/systemrestore
cp -arf systemrestore/* $buildFolder/archiso/airootfs/etc/systemrestore
cp nanorc $buildFolder/archiso/airootfs/etc/nanorc
#cp alsa-base.conf $buildFolder/archiso/airootfs/etc/modprobe.d/alsa-base.conf
#echo
#echo "################################################################## "
#tput setaf 2
#echo "Phase 6 :"
#echo "- Cleaning the cache from /var/cache/pacman/pkg/"
#tput sgr0
#echo "################################################################## "
#echo
#echo "Cleaning the cache from /var/cache/pacman/pkg/"
#yes | sudo pacman -Scc
echo
echo "################################################################## "
tput setaf 2
echo "Phase 7 :"
echo "- Building the iso - this can take a while - be patient"
tput sgr0
echo "################################################################## "
echo
[ -d $outFolder ] || mkdir $outFolder
cd $buildFolder/archiso/
sudo mkarchiso -v -w $buildFolder -o $outFolder $buildFolder/archiso/
echo
echo "###################################################################"
tput setaf 2
echo "Phase 8 :"
echo "- Creating checksums"
echo "- Copying pgklist"
tput sgr0
echo "###################################################################"
echo
cd $outFolder
echo "Creating checksums for : "$isoLabel
echo "##################################################################"
echo
echo "Building sha1sum"
echo "########################"
sha1sum $isoLabel | tee $isoLabel.sha1
echo "Building sha256sum"
echo "########################"
sha256sum $isoLabel | tee $isoLabel.sha256
echo "Building md5sum"
echo "########################"
md5sum $isoLabel | tee $isoLabel.md5
echo
echo "Moving pkglist.x86_64.txt"
echo "########################"
cp $buildFolder/iso/arch/pkglist.x86_64.txt $outFolder/$isoLabel".pkglist.txt"
echo
echo "##################################################################"
tput setaf 2
echo "DONE"
echo "- Check your out folder :"$outFolder
tput sgr0
echo "################################################################## "
echo