public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH 0/8] Make stretch default distro and related CI scripts updates
@ 2018-09-26  5:33 Maxim Yu. Osipov
  2018-09-26  5:33 ` [PATCH 1/8] vm_smoke_test: Increase default timeout value Maxim Yu. Osipov
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-26  5:33 UTC (permalink / raw)
  To: isar-users

Hello everybody,

This series contains CI scripts typos fixes and updates caused by 
explicit declaration of stretch as default distribution.

Kind regards,
Maxim.

Maxim Yu. Osipov (8):
  vm_smoke_test: Increase default timeout value
  vm_smoke_test: Fix parameter name
  ci_build: Fix parameter name and update help
  conf: Change default distribution to stretch
  ci_build: Add qemuarm-buster build
  vm_smoke_test: Add qemuarm-buster test
  ci_build: Add more configurations for cross compilation
  doc: Sync with current local.conf.sample

 doc/user_manual.md               | 24 +++++++++++++++++++-----
 meta-isar/conf/conf-notes.txt    |  2 +-
 meta-isar/conf/local.conf.sample |  4 ++--
 scripts/ci_build.sh              | 16 ++++++++++------
 scripts/vm_smoke_test            |  9 +++++----
 5 files changed, 37 insertions(+), 18 deletions(-)

-- 
2.11.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/8] vm_smoke_test: Increase default timeout value
  2018-09-26  5:33 [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
@ 2018-09-26  5:33 ` Maxim Yu. Osipov
  2018-09-26  5:33 ` [PATCH 2/8] vm_smoke_test: Fix parameter name Maxim Yu. Osipov
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-26  5:33 UTC (permalink / raw)
  To: isar-users

Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
---
 scripts/vm_smoke_test | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/vm_smoke_test b/scripts/vm_smoke_test
index 6608f73..e0520b3 100755
--- a/scripts/vm_smoke_test
+++ b/scripts/vm_smoke_test
@@ -6,7 +6,7 @@
 CONSOLE_OUTPUT=/tmp/isar_console
 PID_FILE=/tmp/qemu.pid
 VERBOSE=1
-TIMEOUT=60
+TIMEOUT=300
 
 # Error codes:
 ES_OK=0
@@ -98,7 +98,7 @@ show_help() {
     echo "                          If test failed for the specific configuration,"
     echo "                          the respective boot log will be printed anyway."
     echo "    -t,--timeout SEC      specify time in seconds to wait before stop QEMU."
-    echo "                          The default is: 60"
+    echo "                          The default is: 300"
     echo "    -h, --help            display this message and exit."
     echo
     echo "Exit status:"
-- 
2.11.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 2/8] vm_smoke_test: Fix parameter name
  2018-09-26  5:33 [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
  2018-09-26  5:33 ` [PATCH 1/8] vm_smoke_test: Increase default timeout value Maxim Yu. Osipov
@ 2018-09-26  5:33 ` Maxim Yu. Osipov
  2018-09-26  5:33 ` [PATCH 3/8] ci_build: Fix parameter name and update help Maxim Yu. Osipov
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-26  5:33 UTC (permalink / raw)
  To: isar-users

Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
---
 scripts/vm_smoke_test | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/vm_smoke_test b/scripts/vm_smoke_test
index e0520b3..3dc2250 100755
--- a/scripts/vm_smoke_test
+++ b/scripts/vm_smoke_test
@@ -94,7 +94,7 @@ show_help() {
     echo "                          The default is: /tmp/isar_console"
     echo "    -p,--pid-file FILE    specify file to store QEMU process PID."
     echo "                          The default is: /tmp/qemu.pid"
-    echo "    -q, --quite           do not display boot logs for all the targets."
+    echo "    -q, --quiet           do not display boot logs for all the targets."
     echo "                          If test failed for the specific configuration,"
     echo "                          the respective boot log will be printed anyway."
     echo "    -t,--timeout SEC      specify time in seconds to wait before stop QEMU."
@@ -125,7 +125,7 @@ do
         PID_FILE=$2
         shift
         ;;
-    -q|--quite)
+    -q|--quiet)
         VERBOSE=0
         ;;
     -t|--timeout)
-- 
2.11.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 3/8] ci_build: Fix parameter name and update help
  2018-09-26  5:33 [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
  2018-09-26  5:33 ` [PATCH 1/8] vm_smoke_test: Increase default timeout value Maxim Yu. Osipov
  2018-09-26  5:33 ` [PATCH 2/8] vm_smoke_test: Fix parameter name Maxim Yu. Osipov
@ 2018-09-26  5:33 ` Maxim Yu. Osipov
  2018-09-26  8:35   ` Henning Schild
  2018-09-26  5:33 ` [PATCH 4/8] conf: Change default distribution to stretch Maxim Yu. Osipov
                   ` (5 subsequent siblings)
  8 siblings, 1 reply; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-26  5:33 UTC (permalink / raw)
  To: isar-users

Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
---
 scripts/ci_build.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
index 083c185..b7114b9 100755
--- a/scripts/ci_build.sh
+++ b/scripts/ci_build.sh
@@ -27,8 +27,9 @@ show_help() {
     echo "Parameters:"
     echo "    -b, --build BUILD_DIR set path to build directory. If not set,"
     echo "                          the build will be started in current path."
+    echo "    -c, --cross           enable cross-compilation."
     echo "    -d, --debug           enable debug bitbake output."
-    echo "    -q, --quite           suppress verbose bitbake output."
+    echo "    -q, --quiet           suppress verbose bitbake output."
     echo "    --help                display this message and exit."
     echo
     echo "Exit status:"
@@ -56,7 +57,7 @@ do
     -d|--debug)
         BB_ARGS="$BB_ARGS -d"
         ;;
-    -q|--quite)
+    -q|--quiet)
         BB_ARGS=""
         ;;
     *)
-- 
2.11.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 4/8] conf: Change default distribution to stretch
  2018-09-26  5:33 [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
                   ` (2 preceding siblings ...)
  2018-09-26  5:33 ` [PATCH 3/8] ci_build: Fix parameter name and update help Maxim Yu. Osipov
@ 2018-09-26  5:33 ` Maxim Yu. Osipov
  2018-09-26  5:33 ` [PATCH 5/8] ci_build: Add qemuarm-buster build Maxim Yu. Osipov
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-26  5:33 UTC (permalink / raw)
  To: isar-users

Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
---
 meta-isar/conf/conf-notes.txt    | 2 +-
 meta-isar/conf/local.conf.sample | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-isar/conf/conf-notes.txt b/meta-isar/conf/conf-notes.txt
index 97c3086..87bd2dc 100644
--- a/meta-isar/conf/conf-notes.txt
+++ b/meta-isar/conf/conf-notes.txt
@@ -1,4 +1,4 @@
 Common targets are:
+    multiconfig:qemuarm-stretch:isar-image-base
     multiconfig:qemuamd64-stretch:isar-image-base
-    multiconfig:qemui386-jessie:isar-image-base
     multiconfig:rpi-jessie:isar-image-base
diff --git a/meta-isar/conf/local.conf.sample b/meta-isar/conf/local.conf.sample
index 92588fe..b8b8495 100644
--- a/meta-isar/conf/local.conf.sample
+++ b/meta-isar/conf/local.conf.sample
@@ -27,7 +27,7 @@ MACHINE ??= "qemuarm"
 # generation of buildchroot environment and target root filesystem.
 #
 # This sets the default distribution configuration:
-DISTRO ??= "debian-jessie"
+DISTRO ??= "debian-stretch"
 DISTRO_ARCH ??= "armhf"
 
 #
@@ -163,5 +163,5 @@ IMAGE_INSTALL = "example-hello example-raw example-module enable-fsck"
 
 #
 # Enable cross-compilation support
-# NOTE: this works only for stretch-armhf and stretch-amd64 targets for now.
+# NOTE: this works on build host >= stretch for armhf, arm64 and amd64 targets for now.
 ISAR_CROSS_COMPILE ?= "0"
-- 
2.11.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 5/8] ci_build: Add qemuarm-buster build
  2018-09-26  5:33 [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
                   ` (3 preceding siblings ...)
  2018-09-26  5:33 ` [PATCH 4/8] conf: Change default distribution to stretch Maxim Yu. Osipov
@ 2018-09-26  5:33 ` Maxim Yu. Osipov
  2018-09-26  5:33 ` [PATCH 6/8] vm_smoke_test: Add qemuarm-buster test Maxim Yu. Osipov
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-26  5:33 UTC (permalink / raw)
  To: isar-users

As default build system is stretch include
build for qemuarm-buster.

Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
---
 scripts/ci_build.sh | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
index b7114b9..f99e4c6 100755
--- a/scripts/ci_build.sh
+++ b/scripts/ci_build.sh
@@ -85,6 +85,7 @@ else
     bitbake $BB_ARGS \
         multiconfig:qemuarm-jessie:isar-image-base \
         multiconfig:qemuarm-stretch:isar-image-base \
+        multiconfig:qemuarm-buster:isar-image-base \
         multiconfig:qemuarm64-stretch:isar-image-base \
         multiconfig:qemui386-jessie:isar-image-base \
         multiconfig:qemui386-stretch:isar-image-base \
@@ -93,9 +94,6 @@ else
         multiconfig:qemuamd64-stretch:isar-image-base \
         multiconfig:qemuamd64-buster:isar-image-base \
         multiconfig:rpi-jessie:isar-image-base
-
-    # qemu-user-static of <= jessie too old to build that
-    #multiconfig:qemuarm-buster:isar-image-base
     # qemu-user-static of <= buster too old to build that
     #multiconfig:qemuarm64-buster:isar-image-base
 fi
-- 
2.11.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 6/8] vm_smoke_test: Add qemuarm-buster test
  2018-09-26  5:33 [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
                   ` (4 preceding siblings ...)
  2018-09-26  5:33 ` [PATCH 5/8] ci_build: Add qemuarm-buster build Maxim Yu. Osipov
@ 2018-09-26  5:33 ` Maxim Yu. Osipov
  2018-09-26  5:33 ` [PATCH 7/8] ci_build: Add more configurations for cross compilation Maxim Yu. Osipov
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-26  5:33 UTC (permalink / raw)
  To: isar-users

As default build system is stretch include
test for qemuarm-buster.

Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
---
 scripts/vm_smoke_test | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/vm_smoke_test b/scripts/vm_smoke_test
index 3dc2250..76c2e16 100755
--- a/scripts/vm_smoke_test
+++ b/scripts/vm_smoke_test
@@ -144,6 +144,7 @@ done
 # ARM machine
 run_test arm jessie
 run_test arm stretch
+run_test arm buster
 
 # AMD64 machine
 run_test amd64 jessie
-- 
2.11.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 7/8] ci_build: Add more configurations for cross compilation
  2018-09-26  5:33 [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
                   ` (5 preceding siblings ...)
  2018-09-26  5:33 ` [PATCH 6/8] vm_smoke_test: Add qemuarm-buster test Maxim Yu. Osipov
@ 2018-09-26  5:33 ` Maxim Yu. Osipov
  2018-09-26  5:33 ` [PATCH 8/8] doc: Sync with current local.conf.sample Maxim Yu. Osipov
  2018-09-27  7:24 ` [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
  8 siblings, 0 replies; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-26  5:33 UTC (permalink / raw)
  To: isar-users

Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
---
 scripts/ci_build.sh | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
index f99e4c6..d2ed6fe 100755
--- a/scripts/ci_build.sh
+++ b/scripts/ci_build.sh
@@ -78,8 +78,13 @@ source isar-init-build-env $BUILD_DIR
 if [ -n "$CROSS_BUILD" ]; then
     sed -i -e 's/ISAR_CROSS_COMPILE ?= "0"/ISAR_CROSS_COMPILE ?= "1"/g' conf/local.conf
     bitbake $BB_ARGS \
+        multiconfig:qemuarm-jessie:isar-image-base \
         multiconfig:qemuarm-stretch:isar-image-base \
-        multiconfig:qemuarm64-stretch:isar-image-base
+        multiconfig:qemuarm-buster:isar-image-base \
+        multiconfig:qemuarm64-stretch:isar-image-base \
+        multiconfig:qemuamd64-jessie:isar-image-base \
+        multiconfig:qemuamd64-stretch:isar-image-base \
+        multiconfig:qemuamd64-buster:isar-image-base
 else
     # Start build for all possible configurations
     bitbake $BB_ARGS \
-- 
2.11.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 8/8] doc: Sync with current local.conf.sample
  2018-09-26  5:33 [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
                   ` (6 preceding siblings ...)
  2018-09-26  5:33 ` [PATCH 7/8] ci_build: Add more configurations for cross compilation Maxim Yu. Osipov
@ 2018-09-26  5:33 ` Maxim Yu. Osipov
  2018-09-27  7:24 ` [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
  8 siblings, 0 replies; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-26  5:33 UTC (permalink / raw)
  To: isar-users

As default build system is stretch update the
manual accordingly.

Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
---
 doc/user_manual.md | 24 +++++++++++++++++++-----
 1 file changed, 19 insertions(+), 5 deletions(-)

diff --git a/doc/user_manual.md b/doc/user_manual.md
index 06b357e..db58cf1 100644
--- a/doc/user_manual.md
+++ b/doc/user_manual.md
@@ -111,22 +111,22 @@ e.g.:
 
 ```
 MACHINE ??= "qemuarm"
-DISTRO ??= "debian-jessie"
+DISTRO ??= "debian-stretch"
 DISTRO_ARCH ??= "armhf"
 ```
 
 Then, call `bitbake` with image names, e.g.:
 
 ```
-bitbake multiconfig:qemuamd64-stretch:isar-image-base \
-        multiconfig:qemuamd64-stretch:isar-image-debug
+bitbake multiconfig:qemuarm-stretch:isar-image-base \
+        multiconfig:qemuarm-stretch:isar-image-debug
 ```
 
 The following images are created:
 
 ```
-tmp/deploy/images/isar-image-base-qemuarm-debian-jessie.ext4.img
-tmp/deploy/images/isar-image-debug-qemuarm-debian-jessie.ext4.img
+tmp/deploy/images/isar-image-base-qemuarm-debian-stretch.ext4.img
+tmp/deploy/images/isar-image-debug-qemuarm-debian-stretch.ext4.img
 ```
 
 ### Building Target Images for Multiple Configurations
@@ -136,12 +136,18 @@ a single call. List all configurations in `conf/local.conf`:
 
 ```
 BBMULTICONFIG = " \
+    qemuarm-wheezy \
     qemuarm-jessie \
     qemuarm-stretch \
+    qemuarm-buster \
+    qemuarm64-stretch \
+    qemuarm64-buster \
     qemui386-jessie \
     qemui386-stretch \
+    qemui386-buster \
     qemuamd64-jessie \
     qemuamd64-stretch \
+    qemuamd64-buster \
     rpi-jessie \
     bananapi-stretch \
 "
@@ -153,10 +159,14 @@ The following command will produce `isar-image-base` images for all targets:
 $ bitbake \
     multiconfig:qemuarm-jessie:isar-image-base \
     multiconfig:qemuarm-stretch:isar-image-base \
+    multiconfig:qemuarm-buster:isar-image-base \
+    multiconfig:qemuarm64-stretch:isar-image-base \
     multiconfig:qemui386-jessie:isar-image-base \
     multiconfig:qemui386-stretch:isar-image-base \
+    multiconfig:qemui386-buster:isar-image-base \
     multiconfig:qemuamd64-jessie:isar-image-base \
     multiconfig:qemuamd64-stretch:isar-image-base \
+    multiconfig:qemuamd64-buster:isar-image-base \
     multiconfig:rpi-jessie:isar-image-base \
     multiconfig:bananapi-stretch:isar-image-base
 ```
@@ -166,6 +176,8 @@ Created images are:
 ```
 tmp/deploy/images/isar-image-base-debian-jessie-qemuarm.ext4.img
 tmp/deploy/images/isar-image-base-debian-stretch-qemuarm.ext4.img
+tmp/deploy/images/isar-image-base-debian-stretch-qemuarm.ext4.img
+tmp/deploy/images/isar-image-base-debian-stretch-qemuarm64.ext4.img
 tmp/deploy/images/isar-image-base-debian-jessie-qemui386.ext4.img
 tmp/deploy/images/isar-image-base-debian-stretch-qemui386.ext4.img
 tmp/deploy/images/isar-image-base-debian-jessie-qemuamd64.ext4.img
@@ -309,6 +321,7 @@ In Isar, each machine can use its specific Linux distro to generate `buildchroot
 
  - debian-jessie
  - debian-stretch
+ - debian-buster
  - raspbian-jessie
 
 User can select appropriate distro for specific machine by setting the following variable in machine configuration file:
@@ -369,6 +382,7 @@ To add new distro, user should perform the following steps:
     ```
     debian-jessie
     debian-stretch
+    debian-buster
     ```
 
  - In this file, define the variables described above.
-- 
2.11.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/8] ci_build: Fix parameter name and update help
  2018-09-26  5:33 ` [PATCH 3/8] ci_build: Fix parameter name and update help Maxim Yu. Osipov
@ 2018-09-26  8:35   ` Henning Schild
  2018-09-26 10:02     ` Maxim Yu. Osipov
  0 siblings, 1 reply; 12+ messages in thread
From: Henning Schild @ 2018-09-26  8:35 UTC (permalink / raw)
  To: Maxim Yu. Osipov; +Cc: isar-users

this one is like the one before, so it might not even apply.

And it adds -c which does not seem to get used.

Henning

Am Wed, 26 Sep 2018 07:33:16 +0200
schrieb "Maxim Yu. Osipov" <mosipov@ilbers.de>:

> Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
> ---
>  scripts/ci_build.sh | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
> index 083c185..b7114b9 100755
> --- a/scripts/ci_build.sh
> +++ b/scripts/ci_build.sh
> @@ -27,8 +27,9 @@ show_help() {
>      echo "Parameters:"
>      echo "    -b, --build BUILD_DIR set path to build directory. If
> not set," echo "                          the build will be started
> in current path."
> +    echo "    -c, --cross           enable cross-compilation."
>      echo "    -d, --debug           enable debug bitbake output."
> -    echo "    -q, --quite           suppress verbose bitbake output."
> +    echo "    -q, --quiet           suppress verbose bitbake output."
>      echo "    --help                display this message and exit."
>      echo
>      echo "Exit status:"
> @@ -56,7 +57,7 @@ do
>      -d|--debug)
>          BB_ARGS="$BB_ARGS -d"
>          ;;
> -    -q|--quite)
> +    -q|--quiet)
>          BB_ARGS=""
>          ;;
>      *)


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/8] ci_build: Fix parameter name and update help
  2018-09-26  8:35   ` Henning Schild
@ 2018-09-26 10:02     ` Maxim Yu. Osipov
  0 siblings, 0 replies; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-26 10:02 UTC (permalink / raw)
  To: Henning Schild; +Cc: isar-users

On 9/26/18 11:35 AM, Henning Schild wrote:
> this one is like the one before, so it might not even apply.

the previous one was for vm_smoke_test... -
just the same typo - `quite` instead of 'quiet'.

  > And it adds -c which does not seem to get used.

-c is defined - it is just missing in help.
I use this key for cross compilation testing.

Maxim.

> 
> Henning
> 
> Am Wed, 26 Sep 2018 07:33:16 +0200
> schrieb "Maxim Yu. Osipov" <mosipov@ilbers.de>:
> 
>> Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
>> ---
>>   scripts/ci_build.sh | 5 +++--
>>   1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
>> index 083c185..b7114b9 100755
>> --- a/scripts/ci_build.sh
>> +++ b/scripts/ci_build.sh
>> @@ -27,8 +27,9 @@ show_help() {
>>       echo "Parameters:"
>>       echo "    -b, --build BUILD_DIR set path to build directory. If
>> not set," echo "                          the build will be started
>> in current path."
>> +    echo "    -c, --cross           enable cross-compilation."
>>       echo "    -d, --debug           enable debug bitbake output."
>> -    echo "    -q, --quite           suppress verbose bitbake output."
>> +    echo "    -q, --quiet           suppress verbose bitbake output."
>>       echo "    --help                display this message and exit."
>>       echo
>>       echo "Exit status:"
>> @@ -56,7 +57,7 @@ do
>>       -d|--debug)
>>           BB_ARGS="$BB_ARGS -d"
>>           ;;
>> -    -q|--quite)
>> +    -q|--quiet)
>>           BB_ARGS=""
>>           ;;
>>       *)
> 


-- 
Maxim Osipov
ilbers GmbH
Maria-Merian-Str. 8
85521 Ottobrunn
Germany
+49 (151) 6517 6917
mosipov@ilbers.de
http://ilbers.de/
Commercial register Munich, HRB 214197
General Manager: Baurzhan Ismagulov

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 0/8] Make stretch default distro and related CI scripts updates
  2018-09-26  5:33 [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
                   ` (7 preceding siblings ...)
  2018-09-26  5:33 ` [PATCH 8/8] doc: Sync with current local.conf.sample Maxim Yu. Osipov
@ 2018-09-27  7:24 ` Maxim Yu. Osipov
  8 siblings, 0 replies; 12+ messages in thread
From: Maxim Yu. Osipov @ 2018-09-27  7:24 UTC (permalink / raw)
  To: isar-users

On 9/26/18 8:33 AM, Maxim Yu. Osipov wrote:
> Hello everybody,
> 
> This series contains CI scripts typos fixes and updates caused by
> explicit declaration of stretch as default distribution.

Applied to the 'next'.


> Kind regards,
> Maxim.
> 
> Maxim Yu. Osipov (8):
>    vm_smoke_test: Increase default timeout value
>    vm_smoke_test: Fix parameter name
>    ci_build: Fix parameter name and update help
>    conf: Change default distribution to stretch
>    ci_build: Add qemuarm-buster build
>    vm_smoke_test: Add qemuarm-buster test
>    ci_build: Add more configurations for cross compilation
>    doc: Sync with current local.conf.sample
> 
>   doc/user_manual.md               | 24 +++++++++++++++++++-----
>   meta-isar/conf/conf-notes.txt    |  2 +-
>   meta-isar/conf/local.conf.sample |  4 ++--
>   scripts/ci_build.sh              | 16 ++++++++++------
>   scripts/vm_smoke_test            |  9 +++++----
>   5 files changed, 37 insertions(+), 18 deletions(-)
> 


-- 
Maxim Osipov
ilbers GmbH
Maria-Merian-Str. 8
85521 Ottobrunn
Germany
+49 (151) 6517 6917
mosipov@ilbers.de
http://ilbers.de/
Commercial register Munich, HRB 214197
General Manager: Baurzhan Ismagulov

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2018-09-27  7:24 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-26  5:33 [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov
2018-09-26  5:33 ` [PATCH 1/8] vm_smoke_test: Increase default timeout value Maxim Yu. Osipov
2018-09-26  5:33 ` [PATCH 2/8] vm_smoke_test: Fix parameter name Maxim Yu. Osipov
2018-09-26  5:33 ` [PATCH 3/8] ci_build: Fix parameter name and update help Maxim Yu. Osipov
2018-09-26  8:35   ` Henning Schild
2018-09-26 10:02     ` Maxim Yu. Osipov
2018-09-26  5:33 ` [PATCH 4/8] conf: Change default distribution to stretch Maxim Yu. Osipov
2018-09-26  5:33 ` [PATCH 5/8] ci_build: Add qemuarm-buster build Maxim Yu. Osipov
2018-09-26  5:33 ` [PATCH 6/8] vm_smoke_test: Add qemuarm-buster test Maxim Yu. Osipov
2018-09-26  5:33 ` [PATCH 7/8] ci_build: Add more configurations for cross compilation Maxim Yu. Osipov
2018-09-26  5:33 ` [PATCH 8/8] doc: Sync with current local.conf.sample Maxim Yu. Osipov
2018-09-27  7:24 ` [PATCH 0/8] Make stretch default distro and related CI scripts updates Maxim Yu. Osipov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox