blob: dd5df210a6d212d87c3718f6847b78228c5f708a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
|