piframe/docs/rpi_tools.md

661 B

Raspberry Pi Standard Tools Setup

The below commands will setup and expose the standard Raspberry Pi tools from raspbian. Some of these tools are necessary for additional features like HDMI display on/off support.


# Standard tools included by arch linux on arm
sed -i "s/appendpath '\/usr\/bin'/appendpath '\/usr\/bin'\nappendpath '\/opt\/vc\/bin'/g" /etc/profile
source /etc/profile

# raspi-config that's commonly used by tutorials and guides online
pacman -S libnewt
wget https://raw.github.com/chattama/raspi-config-archlinux/archlinux/raspi-config -O /usr/local/bin/raspi-config
chmod a+x /usr/local/bin/raspi-config