Skip to content
Snippets Groups Projects
Commit 6e8a4e28 authored by Gregor Best's avatar Gregor Best
Browse files

Merge branch 'ss16' into 'master'

Ss16



See merge request !2
parents 590f98a8 a10b9789
No related branches found
No related tags found
1 merge request!2Ss16
...@@ -26,6 +26,9 @@ function set32 { ...@@ -26,6 +26,9 @@ function set32 {
function guesscpu { function guesscpu {
if insmod cpuid
then
echo "cpuid funktioniert, lasst uns die Architektur überprüfen!"
if cpuid -l if cpuid -l
then then
echo "Dein System scheint ein 64-bit System zu sein." echo "Dein System scheint ein 64-bit System zu sein."
...@@ -34,6 +37,11 @@ function guesscpu { ...@@ -34,6 +37,11 @@ function guesscpu {
echo "Dein System scheint ein 32-bit System zu sein." echo "Dein System scheint ein 32-bit System zu sein."
set32 set32
fi fi
else
echo "cpuid kann nicht geladen werden, wahrscheinlich ist Secure Boot an."
echo "Das System ist dann wahrscheinlich ein 64-bit System."
set64
fi
echo "Die weiseste Wahl sollte $bits bits mit $iso und $isoinitrd zu sein" echo "Die weiseste Wahl sollte $bits bits mit $iso und $isoinitrd zu sein"
echo echo
} }
......
...@@ -69,11 +69,13 @@ PH_PKGS=(\ ...@@ -69,11 +69,13 @@ PH_PKGS=(\
) )
IF_PKGS=(\ IF_PKGS=(\
"FALSE" "eclipse" "Umfangreiche Entwicklungsumgebung für verschiedene Programiersprachen, vornehmlich Java." \
"FALSE" "postgresql" "Datenbank-Server. Nett um in der Datenbanken-Vorlesungen Dinge auszuprobieren.\n Aber relativ groß." \ "FALSE" "postgresql" "Datenbank-Server. Nett um in der Datenbanken-Vorlesungen Dinge auszuprobieren.\n Aber relativ groß." \
"TRUE" "dia" "Graphisches Tool, um UML/ER Diagramme für die Vorlesungen Softwaretechnik und Datenbanken anzufertigen" \ "TRUE" "dia" "Graphisches Tool, um UML/ER Diagramme für die Vorlesungen Softwaretechnik und Datenbanken anzufertigen" \
"TRUE" "ghc" "Glaskow Haskell Compiler für die Vorlesung Programmierung" \ "TRUE" "ghc" "Glaskow Haskell Compiler für die Vorlesung Programmierung" \
"TRUE" "default-jdk" "Java JDK für die Vorlesung Programmierung" \ "TRUE" "default-jdk" "Java JDK für die Vorlesung Programmierung" \
"TRUE" "swi-prolog" "Prolog Interpreter/Compiler für die Vorlesung Programmierung" \ "TRUE" "swi-prolog" "Prolog Interpreter/Compiler für die Vorlesung Programmierung" \
"FALSE" "valgrind" "Debugging- und Profilingtool, welches bei der Entwicklung von Programmen hilft." \
) )
M_PKGS=(\ M_PKGS=(\
......
...@@ -3,9 +3,10 @@ ...@@ -3,9 +3,10 @@
ACTION="$1" ACTION="$1"
FILENAME="/etc/apt/sources.list.d/lipoffline.list" FILENAME="/etc/apt/sources.list.d/lipoffline.list"
ACTIVATED=`test -e "$FILENAME"` ACTIVATED=`test -e "$FILENAME"`
DIST_CODENAME="wily"
DIST_VERSION="15.10"
. /etc/lsb-release
DIST_CODENAME=$DISTRIB_CODENAME
DIST_VERSION=$DISTRIB_RELEASE
function install_repo() function install_repo()
{ {
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment