Add extra packages back and create a 4GB image
This commit is contained in:
parent
4fc1423fdf
commit
cbe273b850
13 changed files with 35 additions and 15 deletions
|
@ -1,4 +1,6 @@
|
|||
UNRELEASED:
|
||||
* Add all extra packages back - Mathematica, BlueJ, Greenfoot, NodeRED, Claws Mail and VNC Viewer
|
||||
2018-10-09:
|
||||
* In startup wizard, assign keyboard to country as per Debian installer recommendations
|
||||
* In startup wizard, add option to use US keyboard in preference to country-specific option
|
||||
* In startup wizard, show IP address on first page
|
||||
|
@ -19,7 +21,6 @@ UNRELEASED:
|
|||
* Add ability to prevent software update changing configuration files, by creating ~/.config/.lock file
|
||||
* Various other small bug fixes, tweaks and changes to text
|
||||
* Make dhcpcd work with 3G devices
|
||||
* Set default timezone to 'Europe/London'
|
||||
* Add hw acceleration to ffmpeg
|
||||
* Improved WiFi-BT coexistence parameters
|
||||
* Run fake-hwclock before systemd-fsck-root
|
||||
|
|
2
stage2/03-accept-mathematica-eula/00-debconf
Normal file
2
stage2/03-accept-mathematica-eula/00-debconf
Normal file
|
@ -0,0 +1,2 @@
|
|||
# Do you accept the Wolfram - Raspberry Pi® Bundle License Agreement?
|
||||
wolfram-engine shared/accepted-wolfram-eula boolean true
|
|
@ -1,2 +1,2 @@
|
|||
NOOBS_NAME="Raspbian Lite"
|
||||
NOOBS_DESCRIPTION="A port of Debian Stretch for the Raspberry Pi (minimal version)"
|
||||
NOOBS_DESCRIPTION="A port of Debian with no desktop environment"
|
||||
|
|
|
@ -1,21 +1,16 @@
|
|||
java-common oracle-java8-jdk
|
||||
libreoffice-sdbc-hsqldb
|
||||
sonic-pi
|
||||
python idle python3-pygame python-pygame python-tk
|
||||
python3 idle3 python3-tk
|
||||
python3-pgzero
|
||||
python-serial python3-serial
|
||||
python-picamera python3-picamera
|
||||
debian-reference-en dillo x2x
|
||||
debian-reference-en dillo
|
||||
raspberrypi-net-mods raspberrypi-ui-mods
|
||||
smartsim
|
||||
python-pip python3-pip
|
||||
python3-numpy
|
||||
pypy
|
||||
minecraft-pi python-minecraftpi
|
||||
alacarte rc-gui sense-hat
|
||||
tree
|
||||
scratch nuscratch
|
||||
libgl1-mesa-dri libgles1-mesa libgles2-mesa xcompmgr
|
||||
geany
|
||||
piclone
|
||||
|
@ -25,10 +20,7 @@ python-twython python3-twython
|
|||
python-smbus python3-smbus
|
||||
python-flask python3-flask
|
||||
python-picraft python3-picraft
|
||||
python-sense-emu python3-sense-emu sense-emu-tools python-sense-emu-doc
|
||||
pprompt
|
||||
scratch2
|
||||
python3-thonny
|
||||
piwiz
|
||||
rp-prefapps
|
||||
libav-tools
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
libreoffice-pi
|
||||
timidity
|
||||
pi-package
|
||||
realvnc-vnc-server
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
hunspell-en-gb
|
||||
hyphen-en-gb
|
||||
libreoffice-help-en-gb
|
||||
libreoffice-l10n-en-gb
|
||||
wamerican
|
||||
wbritish
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
NOOBS_NAME="Raspbian"
|
||||
NOOBS_DESCRIPTION="A port of Debian Stretch for the Raspberry Pi (full desktop version)"
|
||||
NOOBS_DESCRIPTION="A port of Debian with the Raspberry Pi Desktop"
|
||||
|
|
13
stage5/00-install-extras/00-packages
Normal file
13
stage5/00-install-extras/00-packages
Normal file
|
@ -0,0 +1,13 @@
|
|||
python3-thonny
|
||||
sonic-pi
|
||||
scratch nuscratch scratch2
|
||||
smartsim
|
||||
|
||||
minecraft-pi python-minecraftpi
|
||||
python-sense-emu sense-emu-tools python-sense-emu-doc
|
||||
|
||||
wolfram-engine
|
||||
claws-mail
|
||||
greenfoot bluej
|
||||
nodered
|
||||
realvnc-vnc-viewer
|
1
stage5/00-install-libreoffice/00-packages-nr
Normal file
1
stage5/00-install-libreoffice/00-packages-nr
Normal file
|
@ -0,0 +1 @@
|
|||
libreoffice-pi
|
3
stage5/00-install-libreoffice/01-packages
Normal file
3
stage5/00-install-libreoffice/01-packages
Normal file
|
@ -0,0 +1,3 @@
|
|||
libreoffice-sdbc-hsqldb
|
||||
libreoffice-help-en-gb
|
||||
libreoffice-l10n-en-gb
|
4
stage5/EXPORT_IMAGE
Normal file
4
stage5/EXPORT_IMAGE
Normal file
|
@ -0,0 +1,4 @@
|
|||
IMG_SUFFIX="-full"
|
||||
if [ "${USE_QEMU}" = "1" ]; then
|
||||
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"
|
||||
fi
|
2
stage5/EXPORT_NOOBS
Normal file
2
stage5/EXPORT_NOOBS
Normal file
|
@ -0,0 +1,2 @@
|
|||
NOOBS_NAME="Raspbian Full"
|
||||
NOOBS_DESCRIPTION="A port of Debian with desktop and recommended applications"
|
5
stage5/prerun.sh
Executable file
5
stage5/prerun.sh
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
if [ ! -d "${ROOTFS_DIR}" ]; then
|
||||
copy_previous
|
||||
fi
|
Loading…
Reference in a new issue