1
1
#! /usr/bin/bash
2
2
3
- echo " This script was created to simplify the setup process for Surface devices running Arch Linux."
3
+ echo " This script will prepare Surface devices for installation of a patched Arch Linux kernel."
4
+ echo " Answer 'y' to any options you wish to install. By default, options are unselected."
4
5
echo
5
6
6
- cache_folder=.cache_setup
7
+ cache_folder=.cache
7
8
patches_repository=git://github.com/qzed/linux-surface.git
8
9
patches_src_folder=linux-surface
9
10
firmware_src_folder=" $cache_folder /$patches_src_folder /firmware"
@@ -12,24 +13,24 @@ libwacom_src_folder=libwacom-surface
12
13
13
14
# ############################## SETUP ###############################
14
15
15
- # This cache is temporary (fixes issues with superuser permissions)
16
- echo " Creating temporary cache ..."
16
+ echo " Updating cache ..."
17
17
mkdir -p $cache_folder
18
18
cd $cache_folder
19
19
20
- # Fetch repositories from GitHub
20
+ # Fetch patches repository
21
21
if [ -d $patches_src_folder ]; then
22
22
cd $patches_src_folder && git pull && cd ..
23
23
else
24
24
git clone $patches_repository $patches_src_folder
25
25
fi
26
+
27
+ # Fetch libwacom repository
26
28
if [ -d $libwacom_src_folder ]; then
27
29
cd $libwacom_src_folder && git pull && cd ..
28
30
else
29
31
git clone $libwacom_repository $libwacom_src_folder
30
32
fi
31
33
32
- # Exit the cache folder
33
34
cd ..
34
35
35
36
# ############################## INSTALLATION ###############################
39
40
read -r -p " 1. Copy config files from qzed's kernel to root? [y/N] "
40
41
if [[ $REPLY =~ ^[Yy]$ ]]; then
41
42
echo " Unpacking files to / ..."
42
- cp -r $cache_folder /$patches_src_folder /root/etc/* /etc
43
- mkdir -p /lib/systemd/system-sleep
44
- cp $cache_folder /$patches_src_folder /root/lib/systemd/system-sleep/sleep /lib/systemd/system-sleep
45
-
43
+ sudo cp -r $cache_folder /$patches_src_folder /root/etc/* /etc
44
+ sudo mkdir -p /lib/systemd/system-sleep
45
+ sudo cp $cache_folder /$patches_src_folder /root/lib/systemd/system-sleep/sleep /lib/systemd/system-sleep
46
46
echo " Making /lib/systemd/system-sleep/sleep executable ..."
47
- chmod a+x /lib/systemd/system-sleep/sleep
48
-
47
+ sudo chmod a+x /lib/systemd/system-sleep/sleep
49
48
echo " Done copying config files."
50
49
fi
51
50
@@ -55,20 +54,21 @@ echo "!!! WARNING !!! The following option will reset the MODULES option in your
55
54
echo " !!! WARNING !!! A backup of /etc/mkinitcpio.conf will be saved to /etc/mkinitcpio.conf.old if you proceed."
56
55
read -r -p " 2. Rebuild kernel with modules from /etc/initramfs-tools/modules? [y/N] "
57
56
if [[ $REPLY =~ ^[Yy]$ ]]; then
58
- cp /etc/mkinitcpio.conf /etc/mkinitcpio.conf.backup
57
+ sudo cp /etc/mkinitcpio.conf /etc/mkinitcpio.conf.backup
59
58
modules=$( echo " MODULES=($( grep -v ' ^#' $cache_folder /$patches_src_folder /root/etc/initramfs-tools/modules) )" | tr " \n" " " | sed ' s/ *$//g' )
60
- sed -i " /^MODULES=(.*)/c\\ $modules " /etc/mkinitcpio.conf
59
+ sudo sed -i " /^MODULES=(.*)/c\\ $modules " /etc/mkinitcpio.conf
61
60
echo " $modules will be added to /etc/mkinitcpio.conf."
62
- mkinitcpio
61
+ sudo mkinitcpio
62
+ echo " Done fixing mkinitcpio.conf."
63
63
fi
64
64
65
65
# Prompt for replacement of suspend with hibernate
66
66
echo
67
67
read -r -p " 3. Replace suspend with hibernate? [y/N] "
68
68
if [[ $REPLY =~ ^[Yy]$ ]]; then
69
69
echo " Symlinking suspend target/service to hibernate target/service ..."
70
- ln -sf /lib/systemd/system/hibernate.target /etc/systemd/system/suspend.target
71
- ln -sf /lib/systemd/system/systemd-hibernate.service /etc/systemd/system/systemd-suspend.service
70
+ sudo ln -sf /lib/systemd/system/hibernate.target /etc/systemd/system/suspend.target
71
+ sudo ln -sf /lib/systemd/system/systemd-hibernate.service /etc/systemd/system/systemd-suspend.service
72
72
echo " Done replacing suspend with hibernate."
73
73
fi
74
74
77
77
read -r -p " 4. Install all firmware to /lib/firmware? [y/N] "
78
78
if [[ $REPLY =~ ^[Yy]$ ]]; then
79
79
echo " Copying files to /lib/firmware ..."
80
- mkdir -p /lib/firmware
81
- cp -rv $firmware_src_folder /* /lib/firmware
80
+ sudo mkdir -p /lib/firmware
81
+ sudo cp -rv $firmware_src_folder /* /lib/firmware
82
82
echo " Done installing firmware."
83
83
fi
84
84
95
95
96
96
# ############################## CLEANUP ###############################
97
97
98
- # Remove the cache folder to handle permission issues
99
- # echo ""
100
- # echo "Removing temporary cache ..."
101
- # rm -rf $cache_folder
102
-
103
- # Yay! All done.
104
98
echo
105
- echo " Setup process finished!"
106
- echo " Install your patched kernel and then reboot."
99
+ echo " Setup process finished. Install your patched kernel and then reboot."
0 commit comments