From 28b986d9ad097f273c569a11d6fcd3c1af247ac1 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Fri, 31 Jul 2020 23:44:42 +0000 Subject: [PATCH] Move standard raspberry pi tool setup from notes to docs --- docs/README.md | 1 + docs/rpi_tools.md | 16 ++++++++++++++++ notes.txt | 12 ------------ 3 files changed, 17 insertions(+), 12 deletions(-) create mode 100644 docs/rpi_tools.md diff --git a/docs/README.md b/docs/README.md index 4c286ea..203a7c8 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,3 +6,4 @@ This folder contains a bunch of general information on how to get the base of a * [Finalize Arch Setup](finalize_setup.md) * [Setup swap (you really do need this)](swap.md) * [journald Tweaks (make it less chatty and resource hungry)](journald.md) +* [Standard Raspberry Pi Toolchain Setup](rpi_tools.md) diff --git a/docs/rpi_tools.md b/docs/rpi_tools.md new file mode 100644 index 0000000..f942f8b --- /dev/null +++ b/docs/rpi_tools.md @@ -0,0 +1,16 @@ +# 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. + +``` sh + +# 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 + +``` diff --git a/notes.txt b/notes.txt index bcdcb21..5c6e673 100644 --- a/notes.txt +++ b/notes.txt @@ -1,15 +1,3 @@ -######################################## -# rpi tooling setup -######################################## - -sed -i "s/appendpath '\/usr\/bin'/appendpath '\/usr\/bin'\nappendpath '\/opt\/vc\/bin'/g" /etc/profile -source /etc/profile - - -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 - ######################################## # cpu power / governor ########################################