diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-03-27 14:49:10 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-03-27 14:49:10 +0200 |
commit | e69fb51c93107d2cfda91e6a480650a521207220 (patch) | |
tree | d7fefc3cf0c266e5182a5d42029affd0b6a5f712 | |
parent | f2afdd7d02d379dba538bd065e3d2918072091ef (diff) |
Add "Problem solving" section and add SD Card Reader fix
-rw-r--r-- | install-arch.sh | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/install-arch.sh b/install-arch.sh index ca0ee4e..6ddcfd6 100644 --- a/install-arch.sh +++ b/install-arch.sh @@ -98,9 +98,6 @@ exit # Post Install # # -# in case of backlight problems -# acpi_osi=Linux - mkdir -p $HOME/Applications mkdir -p $HOME/Documents mkdir -p $HOME/Downloads @@ -194,3 +191,16 @@ nix-channel --add https://nixos.org/channels/nixpkgs-unstable nix-channel --update nix-env -u + +# # +# Problem solving +# # + +# in case of backlight problems +# acpi_osi=Linux + +# SD Card Reader fix +# https://askubuntu.com/questions/695944/sd-card-doesnt-work-well-under-ubuntu-but-does-well-under-windows/704028#704028 +sudo echo "options sdhci debug_quirks=0x40" >> /etc/modprobe.d/sdhci-pci.conf +sudo modprobe -r sdhci-pci sdhci +sudo modprobe sdhci-pci |