Selaa lähdekoodia

support 5.4 series

Victor Seva 5 vuotta sitten
vanhempi
commit
853e24ca03
2 muutettua tiedostoa jossa 7 lisäystä ja 3 poistoa
  1. 2 2
      Makefile
  2. 5 1
      create_dockerfile.sh

+ 2 - 2
Makefile

@@ -1,6 +1,6 @@
-DISTS ?= buster jessie stretch wheezy bionic precise trusty xenial
+DISTS ?= buster jessie stretch wheezy focal bionic trusty xenial
 
-VERSION ?= 5.2.0
+VERSION ?= 5.4.0
 
 all: clean
 	for i in $(DISTS) ; do \

+ 5 - 1
create_dockerfile.sh

@@ -62,7 +62,7 @@ version=${2:-5.0.3}
 DATE=$(date --rfc-3339=date)
 
 case ${dist} in
-  bionic|xenial|trusty|precise) base=ubuntu ;;
+  focal|bionic|xenial|trusty|precise) base=ubuntu ;;
   squeeze|wheezy|jessie|stretch|buster) base=debian ;;
   *)
     echo "ERROR: no ${dist} base supported"
@@ -75,6 +75,10 @@ case ${dist} in
 esac
 
 case ${version} in
+  5\.4*)
+    echo "5.4 series"
+    kam_version="54"
+    ;;
   5\.3*)
     echo "5.3 series"
     kam_version="53"