cad1891021
Added three patches to fix the mmc issue as described here: https://github.com/SolidHal/Librean/issues/17 Source for the patches is the chrome os kernel. Links to the commits can be found in the issue. Locking into version 4.17.2 for the time being. Better organized patches. Added logic to only apply tested patches on fresh kernel. Moved some debian build improvements in from my devsus master branch, including switching from xfce to lxqt. May be able to add option between the two in the future, as the issue that led to switching DEs may have been with the xorg video drivers that are now skipped by the script and not xfce itself. Cleaned up uneeded old configs
25 lines
803 B
Bash
25 lines
803 B
Bash
#!/bin/sh -xe
|
|
|
|
#Setup locales
|
|
apt install -y locales
|
|
#Install xfce, wicd
|
|
apt install -y xorg acpi-support lightdm tasksel dpkg librsvg2-common xorg xserver-xorg-input-libinput alsa-utils anacron avahi-daemon eject iw libnss-mdns xdg-utils lxqt wicd-daemon wicd wicd-curses wicd-gtk xserver-xorg-input-synaptics
|
|
#Copy in acpi, pulse audio, trackpad settings, funtion key settings
|
|
cp -rf /os_configs/default.pa /etc/pulse/default.pa
|
|
mkdir /etc/acpi
|
|
cp -rf /os_configs/sound.sh /etc/acpi/sound.sh
|
|
mkdir /etc/acpi/events
|
|
cp -rf /os_configs/headphone-acpi-toggle /etc/acpi/events/headphone-acpi-toggle
|
|
mkdir /etc/X11/xorg.conf.d/
|
|
cp -rf /os_configs/50-synaptics.conf /etc/X11/xorg.conf.d/
|
|
|
|
locale-gen
|
|
|
|
echo " Enter new username: "
|
|
read username
|
|
adduser $username
|
|
usermod -a -G sudo,netdev $username
|
|
|
|
|
|
reboot
|