Skip to content
This repository was archived by the owner on Nov 3, 2020. It is now read-only.

Commit 11a9999

Browse files
committed
Fix setup script to (by default) run without superuser permissions
1 parent c13d790 commit 11a9999

File tree

1 file changed

+20
-27
lines changed

1 file changed

+20
-27
lines changed

setup.sh

+20-27
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/usr/bin/bash
22

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."
45
echo
56

6-
cache_folder=.cache_setup
7+
cache_folder=.cache
78
patches_repository=git://github.com/qzed/linux-surface.git
89
patches_src_folder=linux-surface
910
firmware_src_folder="$cache_folder/$patches_src_folder/firmware"
@@ -12,24 +13,24 @@ libwacom_src_folder=libwacom-surface
1213

1314
############################### SETUP ###############################
1415

15-
# This cache is temporary (fixes issues with superuser permissions)
16-
echo "Creating temporary cache ..."
16+
echo "Updating cache ..."
1717
mkdir -p $cache_folder
1818
cd $cache_folder
1919

20-
# Fetch repositories from GitHub
20+
# Fetch patches repository
2121
if [ -d $patches_src_folder ]; then
2222
cd $patches_src_folder && git pull && cd ..
2323
else
2424
git clone $patches_repository $patches_src_folder
2525
fi
26+
27+
# Fetch libwacom repository
2628
if [ -d $libwacom_src_folder ]; then
2729
cd $libwacom_src_folder && git pull && cd ..
2830
else
2931
git clone $libwacom_repository $libwacom_src_folder
3032
fi
3133

32-
# Exit the cache folder
3334
cd ..
3435

3536
############################### INSTALLATION ###############################
@@ -39,13 +40,11 @@ echo
3940
read -r -p "1. Copy config files from qzed's kernel to root? [y/N] "
4041
if [[ $REPLY =~ ^[Yy]$ ]]; then
4142
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
4646
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
4948
echo "Done copying config files."
5049
fi
5150

@@ -55,20 +54,21 @@ echo "!!! WARNING !!! The following option will reset the MODULES option in your
5554
echo "!!! WARNING !!! A backup of /etc/mkinitcpio.conf will be saved to /etc/mkinitcpio.conf.old if you proceed."
5655
read -r -p "2. Rebuild kernel with modules from /etc/initramfs-tools/modules? [y/N] "
5756
if [[ $REPLY =~ ^[Yy]$ ]]; then
58-
cp /etc/mkinitcpio.conf /etc/mkinitcpio.conf.backup
57+
sudo cp /etc/mkinitcpio.conf /etc/mkinitcpio.conf.backup
5958
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
6160
echo "$modules will be added to /etc/mkinitcpio.conf."
62-
mkinitcpio
61+
sudo mkinitcpio
62+
echo "Done fixing mkinitcpio.conf."
6363
fi
6464

6565
# Prompt for replacement of suspend with hibernate
6666
echo
6767
read -r -p "3. Replace suspend with hibernate? [y/N] "
6868
if [[ $REPLY =~ ^[Yy]$ ]]; then
6969
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
7272
echo "Done replacing suspend with hibernate."
7373
fi
7474

@@ -77,8 +77,8 @@ echo
7777
read -r -p "4. Install all firmware to /lib/firmware? [y/N] "
7878
if [[ $REPLY =~ ^[Yy]$ ]]; then
7979
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
8282
echo "Done installing firmware."
8383
fi
8484

@@ -95,12 +95,5 @@ fi
9595

9696
############################### CLEANUP ###############################
9797

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.
10498
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

Comments
 (0)