URI: 
       tadd apt sources and config.txt - arm-sdk - os build toolkit for various embedded devices
  HTML git clone https://git.parazyd.org/arm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 6a31fd8666acdaf019ceb92fc4fb20d4af9acfa3
   DIR parent 397332e937352835ab8db0cac87d1ff61693f90a
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Fri, 30 Sep 2016 11:12:51 +0200
       
       add apt sources and config.txt
       
       Diffstat:
         M boards/raspberry-pi.sh              |      35 +++++++++++++++++++++++++++++--
       
       1 file changed, 33 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/boards/raspberry-pi.sh b/boards/raspberry-pi.sh
       t@@ -65,7 +65,29 @@ postbuild() {
                fn postbuild
        
                notice "executing $device_name postbuild"
       -        return 0
       +
       +        cat <<EOF | sudo tee -a ${strapdir}/etc/apt/sources.list
       +
       +## raspbian repositories needed for certain packages
       +deb http://archive.raspbian.org/raspbian jessie main contrib non-free rpi firmware
       +#deb-src http://archive.raspbian.org/raspbian jessie main contrib non-free rpi firmware
       +
       +## for omxplayer
       +deb http://linux.subogero.com/deb /
       +
       +deb http://pipplware.pplware.pt/pipplware/dists/jessie/main/binary /
       +
       +EOF
       +
       +        cat <<EOF | sudo tee ${strapdir}/postbuild
       +#!/bin/sh
       +apt-get update
       +apt-get upgrade
       +rm -f /postbuild
       +rm -f /usr/bin/${qemu_bin}
       +EOF
       +        chmod +x $strapdir/postbuild
       +        chroot $strapdir /postbuild || zerr
        }
        
        build_kernel_armhf() {
       t@@ -117,11 +139,20 @@ build_kernel_armhf() {
                popd
        
                notice "creating cmdline.txt"
       -        ## TODO: add other .txt too
                cat <<EOF | sudo tee ${workdir}/boot/cmdline.txt
        dwc_otg.fiq_fix_enable=2 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait rootflags=noload net.ifnames=0 quiet
        EOF
        
       +        notice "creating config.txt"
       +        cat <<EOF | sudo tee ${workdir}/boot/config.txt
       +## memory shared with the GPU
       +gpu_mem=64
       +
       +dtparam=audio=on
       +
       +max_usb_current=1
       +EOF
       +
                ## TODO: remove systemd merda from raspi-config and add here
        
                notice "installing raspberry pi 3 firmware for bt/wifi"