diff options
author | ramon <ramongomez@us.es> | 2015-11-09 13:46:19 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2015-11-09 13:46:19 +0000 |
commit | 5c09bc57f90c436c55160e3a4e0f5765cdb651c5 (patch) | |
tree | 1f046164ceb444e82e404a73319f5d0b8e31b60c /client/boot-tools | |
parent | 8053affa6747cd0ee0e4766039f4f41ff10234ea (diff) |
#724: Generador boot-tools preparado para ogLive 1.1.0 basado en ubuntu 15.10.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@4725 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client/boot-tools')
-rwxr-xr-x | client/boot-tools/boottoolsfunctions.lib | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/client/boot-tools/boottoolsfunctions.lib b/client/boot-tools/boottoolsfunctions.lib index c703cc46..b9f3b468 100755 --- a/client/boot-tools/boottoolsfunctions.lib +++ b/client/boot-tools/boottoolsfunctions.lib @@ -55,6 +55,13 @@ case "${1,,}" in OSARCH="i386" OSHTTP="http://es.archive.ubuntu.com/ubuntu/" ;; + wheezy) # ogLive basado en Debian 7.3. + OSDISTRIB="debian" + OSCODENAME="wheezy" + OSRELEASE="3.2.0-4-i386" + OSARCH="i386" + OSHTTP="http://ftp.es.debian.org/debian/" + ;; quantal) # ogLive 1.0.5-rc2 basado en Ubuntu 12.10 con Kernel descargado. OSDISTRIB="ubuntu" OSCODENAME="quantal" @@ -69,24 +76,24 @@ case "${1,,}" in OSARCH="i386" OSHTTP="http://es.archive.ubuntu.com/ubuntu/" ;; - vivid) # ogLive 1.1.0-rc1 basado en Ubuntu 15.04. + trusty) # ogLive 1.0.5-rc4 basado en Ubuntu 14.04. OSDISTRIB="ubuntu" - OSCODENAME="vivid" - OSRELEASE="3.19.0-31-generic" + OSCODENAME="trusty" + OSRELEASE="3.13.0-24-generic" OSARCH="i386" OSHTTP="http://es.archive.ubuntu.com/ubuntu/" ;; - wheezy) # ogLive basado en Debian 7.3. - OSDISTRIB="debian" - OSCODENAME="wheezy" - OSRELEASE="3.2.0-4-i386" + vivid) # ogLive 1.1.0-rc1 basado en Ubuntu 15.04. + OSDISTRIB="ubuntu" + OSCODENAME="vivid" + OSRELEASE="3.19.0-31-generic" OSARCH="i386" - OSHTTP="http://ftp.es.debian.org/debian/" + OSHTTP="http://es.archive.ubuntu.com/ubuntu/" ;; - trusty) # ogLive 1.0.5-rc4 basado en Ubuntu 14.04. + wily) # ogLive 1.1.0-rc1 basado en Ubuntu 15.10. OSDISTRIB="ubuntu" - OSCODENAME="trusty" - OSRELEASE="3.13.0-24-generic" + OSCODENAME="wily" + OSRELEASE="4.2.0-16-generic" OSARCH="i386" OSHTTP="http://es.archive.ubuntu.com/ubuntu/" ;; |