diff options
-rw-r--r-- | raspberry-pi.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/raspberry-pi.md b/raspberry-pi.md new file mode 100644 index 0000000..dd5df21 --- /dev/null +++ b/raspberry-pi.md @@ -0,0 +1,19 @@ +# Info for running a Raspberry Pi system + +## Arch ARM + +Details on running Arch Linux ARM on a Pi + +### Sound + +`/boot/config.txt` needs the following to enable the audio card: + + dtparam=audio=on + +(Source: https://archlinuxarm.org/forum/viewtopic.php?f=9&t=13463#p60706) + +And + + dtoverlay=audremap,pins_12_13,enable_jack + +(Source: https://raspberrypi.stackexchange.com/questions/133199/no-audio-through-jack-despite-config-audio-on-raspi-config-also-fails/133200) |