Add Raspbian stages
This commit is contained in:
4
stage4/00-install-packages/00-debconf
Normal file
4
stage4/00-install-packages/00-debconf
Normal file
@@ -0,0 +1,4 @@
|
||||
# Enable realtime process priority?
|
||||
jackd2 jackd/tweak_rt_limits boolean true
|
||||
# Do you accept the Wolfram - Raspberry Pi® Bundle License Agreement?
|
||||
wolfram-engine shared/accepted-wolfram-eula boolean true
|
27
stage4/00-install-packages/00-packages
Normal file
27
stage4/00-install-packages/00-packages
Normal file
@@ -0,0 +1,27 @@
|
||||
java-common oracle-java8-jdk
|
||||
libreoffice-sdbc-hsqldb
|
||||
sonic-pi
|
||||
python idle python3-pygame python-pygame python-tk
|
||||
python3 idle3 python3-tk
|
||||
python3-rpi.gpio
|
||||
python3-pgzero
|
||||
python-serial python3-serial
|
||||
python-picamera python3-picamera
|
||||
debian-reference-en dillo x2x
|
||||
wolfram-engine
|
||||
raspberrypi-net-mods raspberrypi-ui-mods
|
||||
smartsim penguinspuzzle
|
||||
python-pip python3-pip
|
||||
python3-numpy
|
||||
pypy
|
||||
python3-pifacecommon python3-pifacedigitalio python3-pifacedigital-scratch-handler python-pifacecommon python-pifacedigitalio
|
||||
minecraft-pi python-minecraftpi
|
||||
alacarte rc-gui sense-hat
|
||||
claws-mail
|
||||
tree
|
||||
scratch nuscratch
|
||||
greenfoot bluej
|
||||
nodered
|
||||
python-gpiozero python3-gpiozero
|
||||
raspi-gpio
|
||||
libgl1-mesa-dri libgles1-mesa libgles2-mesa xcompmgr
|
3
stage4/00-install-packages/00-packages-nr
Normal file
3
stage4/00-install-packages/00-packages-nr
Normal file
@@ -0,0 +1,3 @@
|
||||
libreoffice libreoffice-gtk
|
||||
timidity
|
||||
pi-package
|
5
stage4/01-tweaks/00-run.sh
Executable file
5
stage4/01-tweaks/00-run.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
ln -sf /etc/systemd/system/autologin@.service ${ROOTFS_DIR}/etc/systemd/system/getty.target.wants/getty@tty1.service
|
||||
|
||||
install -v -m 644 files/40-scratch.rules ${ROOTFS_DIR}/etc/udev/rules.d/
|
1
stage4/01-tweaks/files/40-scratch.rules
Normal file
1
stage4/01-tweaks/files/40-scratch.rules
Normal file
@@ -0,0 +1 @@
|
||||
ATTRS{idVendor}=="0694", ATTRS{idProduct}=="0003", SUBSYSTEMS=="usb", ACTION=="add", MODE="0666", GROUP="plugdev"
|
13
stage4/02-extras/00-patches/0-autologin.diff
Normal file
13
stage4/02-extras/00-patches/0-autologin.diff
Normal file
@@ -0,0 +1,13 @@
|
||||
Index: jessie-stage4/rootfs/etc/lightdm/lightdm.conf
|
||||
===================================================================
|
||||
--- jessie-stage4.orig/rootfs/etc/lightdm/lightdm.conf
|
||||
+++ jessie-stage4/rootfs/etc/lightdm/lightdm.conf
|
||||
@@ -114,7 +114,7 @@
|
||||
#session-setup-script=
|
||||
#session-cleanup-script=
|
||||
#autologin-guest=false
|
||||
-#autologin-user=
|
||||
+autologin-user=pi
|
||||
#autologin-user-timeout=0
|
||||
#autologin-in-background=false
|
||||
#autologin-session=UNIMPLEMENTED
|
1
stage4/02-extras/00-patches/series
Normal file
1
stage4/02-extras/00-patches/series
Normal file
@@ -0,0 +1 @@
|
||||
0-autologin.diff
|
54
stage4/02-extras/00-run.sh
Executable file
54
stage4/02-extras/00-run.sh
Executable file
@@ -0,0 +1,54 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
HASH=`wget https://api.github.com/repos/KenT2/python-games/git/refs/heads/master -qO -| grep \"sha\" | cut -f 2 -d ':' | cut -f 2 -d \"`
|
||||
HASH_LOCAL=`cat files/python_games.hash`
|
||||
|
||||
if [ ! -e files/python_games.tar.gz ] || [ "$HASH" != "$HASH_LOCAL" ]; then
|
||||
wget "https://github.com/KenT2/python-games/tarball/master" -O files/python_games.tar.gz
|
||||
echo $HASH > files/python_games.hash
|
||||
fi
|
||||
|
||||
ln -sf pip3 ${ROOTFS_DIR}/usr/bin/pip-3.2
|
||||
|
||||
install -v -o 1000 -g 1000 -d ${ROOTFS_DIR}/home/pi/python_games
|
||||
tar xvf files/python_games.tar.gz -C ${ROOTFS_DIR}/home/pi/python_games --strip-components=1
|
||||
chown 1000:1000 ${ROOTFS_DIR}/home/pi/python_games -Rv
|
||||
chmod +x ${ROOTFS_DIR}/home/pi/python_games/launcher.sh
|
||||
|
||||
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/Documents"
|
||||
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/Documents/BlueJ Projects"
|
||||
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/Documents/Greenfoot Projects"
|
||||
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/Documents/Scratch Projects"
|
||||
|
||||
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/.local"
|
||||
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/.local/share"
|
||||
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/.local/share/applications"
|
||||
|
||||
rsync -a --chown=1000:1000 ${ROOTFS_DIR}/usr/share/doc/BlueJ/ "${ROOTFS_DIR}/home/pi/Documents/BlueJ Projects"
|
||||
rsync -a --chown=1000:1000 ${ROOTFS_DIR}/usr/share/doc/Greenfoot/ "${ROOTFS_DIR}/home/pi/Documents/Greenfoot Projects"
|
||||
rsync -a --chown=1000:1000 ${ROOTFS_DIR}/usr/share/scratch/Projects/Demos/ "${ROOTFS_DIR}/home/pi/Documents/Scratch Projects"
|
||||
|
||||
install -v -o 1000 -g 1000 -d ${ROOTFS_DIR}/home/pi/.config
|
||||
install -v -o 1000 -g 1000 -d ${ROOTFS_DIR}/home/pi/.config/pcmanfm
|
||||
install -v -o 1000 -g 1000 -d ${ROOTFS_DIR}/home/pi/.config/pcmanfm/LXDE-pi
|
||||
install -v -o 1000 -g 1000 -d ${ROOTFS_DIR}/home/pi/.config/openbox
|
||||
install -v -o 1000 -g 1000 -d ${ROOTFS_DIR}/home/pi/.config/lxsession
|
||||
install -v -o 1000 -g 1000 -d ${ROOTFS_DIR}/home/pi/.themes
|
||||
install -v -o 1000 -g 1000 -d ${ROOTFS_DIR}/home/pi/.config/gtk-3.0
|
||||
install -v -o 1000 -g 1000 -d ${ROOTFS_DIR}/home/pi/.config/lxpanel
|
||||
install -v -o 1000 -g 1000 -d ${ROOTFS_DIR}/home/pi/Desktop
|
||||
|
||||
install -v -m 644 -o 1000 -g 1000 ${ROOTFS_DIR}/etc/xdg/pcmanfm/LXDE-pi/pcmanfm.conf ${ROOTFS_DIR}/home/pi/.config/pcmanfm/LXDE-pi/
|
||||
install -v -m 644 -o 1000 -g 1000 ${ROOTFS_DIR}/etc/xdg/pcmanfm/LXDE-pi/desktop-items-0.conf ${ROOTFS_DIR}/home/pi/.config/pcmanfm/LXDE-pi/
|
||||
|
||||
install -v -m 644 -o 1000 -g 1000 ${ROOTFS_DIR}/etc/xdg/openbox/lxde-pi-rc.xml ${ROOTFS_DIR}/home/pi/.config/openbox/
|
||||
|
||||
rsync -a --chown=1000:1000 ${ROOTFS_DIR}/etc/xdg/lxsession/LXDE-pi ${ROOTFS_DIR}/home/pi/.config/lxsession/
|
||||
rsync -a --chown=1000:1000 ${ROOTFS_DIR}/usr/share/themes/PiX ${ROOTFS_DIR}/home/pi/.themes/
|
||||
|
||||
install -v -m 644 -o 1000 -g 1000 ${ROOTFS_DIR}/usr/share/raspi-ui-overrides/gtk.css ${ROOTFS_DIR}/home/pi/.config/gtk-3.0/
|
||||
|
||||
install -v -m 644 -o 1000 -g 1000 ${ROOTFS_DIR}/usr/share/raspi-ui-overrides/Trolltech.conf ${ROOTFS_DIR}/home/pi/.config/
|
||||
|
||||
install -v -m 644 -o 1000 -g 1000 ${ROOTFS_DIR}/etc/xdg/lxpanel/launchtaskbar.cfg ${ROOTFS_DIR}/home/pi/.config/lxpanel/
|
||||
rsync -a --chown=1000:1000 ${ROOTFS_DIR}/etc/xdg/lxpanel/profile/LXDE-pi ${ROOTFS_DIR}/home/pi/.config/lxpanel/
|
2
stage4/02-extras/files/.gitignore
vendored
Normal file
2
stage4/02-extras/files/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
python_games.hash
|
||||
python_games.tar.gz
|
5
stage4/03-cleanup/00-run.sh
Executable file
5
stage4/03-cleanup/00-run.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
on_chroot sh -e - <<EOF
|
||||
apt-get clean
|
||||
EOF
|
0
stage4/EXPORT_IMAGE
Normal file
0
stage4/EXPORT_IMAGE
Normal file
0
stage4/EXPORT_NOOBS
Normal file
0
stage4/EXPORT_NOOBS
Normal file
4
stage4/prerun.sh
Executable file
4
stage4/prerun.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash -e
|
||||
if [ ! -d ${ROOTFS_DIR} ]; then
|
||||
copy_previous
|
||||
fi
|
Reference in New Issue
Block a user