-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature_ck_config_improvements' (ausgegebene Version)
- Loading branch information
Showing
108 changed files
with
5,289 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
|
||
FSFW-Uni-Stick/config/packages.chroot/* | ||
|
||
FSFW-Uni-Stick/config/includes.chroot/home/user/* | ||
|
||
doc/html/*.html | ||
|
||
manual-installed-packages/* | ||
images | ||
|
||
.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,20 @@ | |
# FILE: fsfw-uni-stick_build.sh | ||
# USAGE: ./fsfw-uni-stick_build.sh - ( ausführen im live-build-Verzeichnis ) | ||
# DESCRIPTION: erstellen des FSFW-Uni-Stick | ||
# | ||
# VERSION: 0.0.1 | ||
# OPTIONS: $1 = DEVICE=/dev/sd... Gerät/USB-Stick der benutzt werden soll | ||
# Nutzung variabler configurationen möglich | ||
# alle Schritte in diesem Skript können auch einzeln ausgeführt werden | ||
# | ||
# VERSION: 0.0.3 | ||
# OPTIONS: TUDO: = DEVICE=/dev/sd... Gerät/USB-Stick der benutzt werden soll | ||
# (zu formatierendes Gerät/Device .z.B.: /dev/sdb ) | ||
# $1 TUDO: -c (--config) build-configuration .z.B.: FSFW-Uni-Stick_KDE_jessie_amd64 (default) | ||
# | ||
# NOTES: für - live-build - Debian jessie / Debian stretch - LANG=de_DE.UTF-8 | ||
# | ||
# | ||
# AUTHOR: Gerd Göhler, [email protected] | ||
# CREATED: 2016-10-21 | ||
# REVISION: | ||
# REVISION: 2017-08-13 | ||
# Lizenz: CC BY-NC-SA 3.0 DE - https://creativecommons.org/licenses/by-nc-sa/3.0/de/# | ||
# https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode | ||
#========================================== | ||
|
@@ -31,6 +35,17 @@ | |
# | ||
# | ||
|
||
FSFW_UNI_STICK_CONFIG_DEFAULT="FSFW-Uni-Stick_KDE_jessie_amd64" | ||
|
||
FSFW_UNI_STICK_CONFIG=$1 | ||
echo "FSFW-Uni-Stick config: ${FSFW_UNI_STICK_CONFIG} " | ||
|
||
# TUDO: testen ob Verzeichnis und config vorhanden existieren | ||
|
||
if [[ -z ${FSFW_UNI_STICK_CONFIG} ]]; then | ||
FSFW_UNI_STICK_CONFIG=${FSFW_UNI_STICK_CONFIG_DEFAULT} | ||
echo "FSFW-Uni-Stick config: ${FSFW_UNI_STICK_CONFIG} " | ||
fi | ||
|
||
|
||
# Der eigentliche Skript-Inhalt liegt innerhalb der folgenden Funktion | ||
|
@@ -51,14 +66,24 @@ fi | |
# live-build Umgebung aufräumen | ||
sudo lb clean | ||
|
||
# System Configuration einspielen | ||
../tools/fsfw-uni-stick_system-config.sh "${FSFW_UNI_STICK_CONFIG}" | ||
|
||
|
||
# Paketlisten generieren | ||
./auto/paketliste | ||
if [ -e ../config/${FSFW_UNI_STICK_CONFIG}/paketliste ]; then | ||
echo " ./auto/paketliste $(cat ../config/${FSFW_UNI_STICK_CONFIG}/paketliste) wird ausgeführt " | ||
./auto/paketliste $(cat ../config/${FSFW_UNI_STICK_CONFIG}/paketliste) | ||
else | ||
./auto/paketliste | ||
echo " ./auto/paketliste wird ausgeführt " | ||
fi | ||
|
||
# extra Pakete holen | ||
|
||
# TODO: | ||
#script extra-install_paket.sh # Paketlisten nach extra-instell Pakenten durchsuchen und download nach config/packages.chroot/* | ||
../tools/extra-install_paket.sh | ||
../tools/extra-install_paket.sh "${FSFW_UNI_STICK_CONFIG}" | ||
|
||
# Doku bauen und verteilen | ||
|
||
|
@@ -67,10 +92,11 @@ sudo lb clean | |
../tools/doku_create.sh | ||
|
||
# FSFW user config erstellen | ||
# TODO: | ||
#script fsfw-user_config.sh # user config aus doc/src_user-config/* --> config/includes.chroot/home/user/ --> config/includes.chroot/etc/... | ||
# git-versionsnummer / link --> config/includes.chroot/home/user/.version_fsfw-uni-stick | ||
../tools/fsfw-user_config.sh | ||
# in multiconfig neue Aufteilung der user configuration -- alt ../tools/fsfw-user_config.sh (erstellt nur noch fsfw-user spezifische Teile) | ||
|
||
echo " ../tools/fsfw-uni-stick_user-config.sh "${FSFW_UNI_STICK_CONFIG}" ausführen " | ||
|
||
../tools/fsfw-uni-stick_user-config.sh "${FSFW_UNI_STICK_CONFIG}" | ||
|
||
# live-build config generieren -- optionaler Zwischenschritt um config manuell anzupassen - wird sonst von "lb build" mit erledigt | ||
# sudo lb config | ||
|
@@ -83,6 +109,15 @@ sudo lb build | |
echo "Benutzerberechtigung ändern " | ||
sudo chown ${USER}:${USER} ./FSFW-Uni-Stick*.iso | ||
|
||
# Image ins Verzeichnis images verschieben | ||
|
||
if [ ! -d ../images/ ]; then | ||
mkdir -p ../images/ | ||
echo " Verzeichnis images erstellt." | ||
fi | ||
|
||
mv ./FSFW-Uni-Stick*.iso ../images/ | ||
|
||
# TODO: | ||
# USB-Stick erstellen - Speichergerät partitionieren,formatieren - FSFW_UNI_Stick_*.iso schreiben | ||
# script mit $1 starten oder später abfrage ?? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*/system_config/packages.chroot/* | ||
FSFW-Uni-Stick_Test_* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
config/FSFW-Uni-Stick_KDE_jessie_amd64/doc/Accessibility-Paketliste.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
## Accessibility | ||
|
||
- :x: dasher -- Gestengesteuerte Eingabe | ||
- :x: ebook-speaker | ||
- :+1: eflite -- ein auf Festival-Lite basierender Sprachserver für Emacsspeak | ||
- :o: :-1: # espeakup -- Sprachsynthese mit Schwierigkeiten | ||
- :x: flite -- Laufzeit-Sprachsynthese auf Basis von Festival-Lite | ||
- :o: libttspico-utils -- Sprachsysthese aus dem Non-Free- Repo | ||
- :x: jovie -- Sprachausgabe | ||
- :x: espeak -- Sprachausgabe | ||
- :o: mbrola -- Sprachsynthese (unfrei) | ||
- :o: mbrola-de4 | ||
- :o: mbrola-de5 | ||
- :o: mbrola-de6 | ||
- :o: mbrola-de7 | ||
- :o: mbrola-us1 | ||
- :o: mbrola-us2 | ||
- :o: mbrola-us3 | ||
- :x: pocketsphinx -- Spracherkennung | ||
|
||
|
||
- ### Konsole | ||
|
||
- :x: brltty -- Braille-Tool | ||
- :x: console-braille -- Fonts and keymaps for reading/typing unicode braille | ||
- :x: brltty-espeak -- | ||
- :x: brltty-flite -- | ||
- :x: brltty-speechd -- | ||
- :x: speech-dispatcher -- Common interface to speech synthesizers | ||
- :x: speech-dispatcher-festival | ||
- :x: freetts -- FLite basierte Sprachsynthese | ||
- :x: gocr -- Texterkennung (OCR) | ||
- :x: tesseract-ocr -- OCR als Vorstufe für Textausgabe per Sprache oder Braillezeile | ||
- :x: tesseract-ocr-deu -- OCR-Trainingsdaten für Deutsch | ||
|
||
|
||
- ### KDE-Desktop -- für den KDE-Desktop | ||
|
||
- :x: kaccessible -- Barrierereduzierung für gehandicapte Anwender | ||
- :x: kvkbd -- Oncreen-Keyboard | ||
- :x: kmouth -- Frontend für Sprachausgabe | ||
|
||
|
||
- ### Gnome-Desktop & Derivate | ||
|
||
- :x: gespeaker -- GTK+ Frontend für espeaker und mbrola | ||
- :x: gnome-accessibility-themes -- Barrierereduzierung für Anwender mit Handicap | ||
- :x: gnome-orca -- Programmierbarer Screenreader |
Oops, something went wrong.