All of lore.kernel.org
 help / color / mirror / Atom feed
* [Fuego] updates to fuego/ (boards path, distrib, readme)
@ 2017-03-30  0:51 Daniel Sangorrin
  2017-03-30  0:51 ` [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards Daniel Sangorrin
  0 siblings, 1 reply; 11+ messages in thread
From: Daniel Sangorrin @ 2017-03-30  0:51 UTC (permalink / raw)
  To: fuego

Hi,

The following patches on the 'fuego' repository add
some modifications to the path were boards are located
(note I plan to move testplans there as well). Also
DISTRIB should now be defined inside the board file
or otherwise it will default to nosyslogd.dist which
should work most of the time.

[PATCH 1/5] boards: change folder to fuego-ro/boards
[PATCH 2/5] README: no need to run ftc as jenkins anymore
[PATCH 3/5] distrib: the DISTRIB variable should be in the board
[PATCH 4/5] doc: add-nodes is now the way to add nodes in fuego
[PATCH 5/5] README: add add-jobs example using testspec

[Note] I will send another batch of patches for the 'fuego-core'
repository soon.

Cheers
Daniel


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

* [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards
  2017-03-30  0:51 [Fuego] updates to fuego/ (boards path, distrib, readme) Daniel Sangorrin
@ 2017-03-30  0:51 ` Daniel Sangorrin
  2017-03-30  0:51   ` [Fuego] [PATCH 2/5] README: no need to run ftc as jenkins anymore Daniel Sangorrin
                     ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Daniel Sangorrin @ 2017-03-30  0:51 UTC (permalink / raw)
  To: fuego

Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
---
 docs/source/board_config.tex                 |  2 +-
 fuego-ro/boards/README                       |  4 +++
 fuego-ro/boards/bbb.board                    | 26 +++++++++++++++++
 fuego-ro/boards/beaglebone-serial.board      | 43 ++++++++++++++++++++++++++++
 fuego-ro/boards/docker.board                 | 11 +++++++
 fuego-ro/boards/lager.board                  | 32 +++++++++++++++++++++
 fuego-ro/boards/qemu-arm.board               | 26 +++++++++++++++++
 fuego-ro/boards/template-dev.board           | 25 ++++++++++++++++
 fuego-ro/conf/boards/README                  |  4 ---
 fuego-ro/conf/boards/bbb.board               | 26 -----------------
 fuego-ro/conf/boards/beaglebone-serial.board | 43 ----------------------------
 fuego-ro/conf/boards/docker.board            | 11 -------
 fuego-ro/conf/boards/lager.board             | 32 ---------------------
 fuego-ro/conf/boards/qemu-arm.board          | 26 -----------------
 fuego-ro/conf/boards/template-dev.board      | 25 ----------------
 15 files changed, 168 insertions(+), 168 deletions(-)
 create mode 100644 fuego-ro/boards/README
 create mode 100644 fuego-ro/boards/bbb.board
 create mode 100644 fuego-ro/boards/beaglebone-serial.board
 create mode 100644 fuego-ro/boards/docker.board
 create mode 100644 fuego-ro/boards/lager.board
 create mode 100644 fuego-ro/boards/qemu-arm.board
 create mode 100644 fuego-ro/boards/template-dev.board
 delete mode 100644 fuego-ro/conf/boards/README
 delete mode 100644 fuego-ro/conf/boards/bbb.board
 delete mode 100644 fuego-ro/conf/boards/beaglebone-serial.board
 delete mode 100644 fuego-ro/conf/boards/docker.board
 delete mode 100644 fuego-ro/conf/boards/lager.board
 delete mode 100644 fuego-ro/conf/boards/qemu-arm.board
 delete mode 100644 fuego-ro/conf/boards/template-dev.board

diff --git a/docs/source/board_config.tex b/docs/source/board_config.tex
index 1910e60..e71bd7d 100644
--- a/docs/source/board_config.tex
+++ b/docs/source/board_config.tex
@@ -5,7 +5,7 @@ In this document we will use such notions as \textit{targets} and \textit{boards
 \item[Board] denotes a back-end entity, such as a physical board (specifically, the board or device to run tests on).
 \end{description}
 
-Board configuration is stored in \texttt{FUEGO\_RO/conf/boards/<boardname>.board},
+Board configuration is stored in \texttt{FUEGO\_RO/boards/<boardname>.board},
 where \texttt{<boardname>} is the respective name of the target.
 
 \subsection{Adding a target in Jenkins interface}
diff --git a/fuego-ro/boards/README b/fuego-ro/boards/README
new file mode 100644
index 0000000..bf20dc8
--- /dev/null
+++ b/fuego-ro/boards/README
@@ -0,0 +1,4 @@
+This directory contains board files.
+
+See docs for reference on what variables should they define.
+
diff --git a/fuego-ro/boards/bbb.board b/fuego-ro/boards/bbb.board
new file mode 100644
index 0000000..df4afac
--- /dev/null
+++ b/fuego-ro/boards/bbb.board
@@ -0,0 +1,26 @@
+inherit "base-board"
+include "base-params"
+
+IPADDR="192.168.7.2"
+SRV_IP="192.168.7.1"
+LOGIN="root"
+BOARD_TESTDIR="/tests"
+PASSWORD="root"
+PLATFORM="qemu-armv7hf"
+TRANSPORT="ssh"
+ARCHITECTURE="arm"
+
+SATA_DEV="/dev/sdb1"
+SATA_MP="/mnt/sata"
+
+USB_DEV="/dev/sda1"
+USB_MP="/mnt/usb"
+
+MMC_DEV="/dev/mmcblk0p2"
+MMC_MP="/mnt/mmc"
+
+MAX_REBOOT_RETRIES="3"
+LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
+LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
+EXPAT_SUBTEST_COUNT_POS="1769"
+EXPAT_SUBTEST_COUNT_NEG="41"
diff --git a/fuego-ro/boards/beaglebone-serial.board b/fuego-ro/boards/beaglebone-serial.board
new file mode 100644
index 0000000..1237e71
--- /dev/null
+++ b/fuego-ro/boards/beaglebone-serial.board
@@ -0,0 +1,43 @@
+inherit "base-board"
+include "base-params"
+include "base-funcs"
+
+SERIAL="ttyACM1"
+BAUD="115200"
+LOGIN="root"
+BOARD_TESTDIR="/home/a"
+PASSWORD=""
+PLATFORM="poky-qemuarm"
+TRANSPORT="serial"
+IO_TIME_SERIAL="0.1"
+ARCHITECTURE="arm"
+SATA_DEV="/dev/sda1"
+SATA_MP="/mnt/sata"
+
+USB_DEV="/dev/sdb1"
+USB_MP="/mnt/usb"
+
+MMC_DEV="/dev/mmcblk0p1"
+MMC_MP="/mnt/mmc"
+
+#BOARD.CAP_LIST="RENESAS"
+
+BENCHMARK_DHRYSTONE_LOOPS="100000000"
+
+LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
+LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
+EXPAT_SUBTEST_COUNT_POS="1769"
+EXPAT_SUBTEST_COUNT_NEG="41"
+
+FUNCTIONAL_SCIFAB_RES_LINES_COUNT="1"
+FUNCTIONAL_STRESS_FAIL_CASE_COUNT="1"
+FUNCTIONAL_CMT_FAIL_CASE_COUNT="1"
+FUNCTIONAL_SCIFAB_FAIL_CASE_COUNT="1"
+FUNCTIONAL_BZIP2_FAIL_CASE_COUNT="1"
+
+FUNCTIONAL_SDHI_0_RES_LINES_COUNT="1"
+BENCHMARK_NETPERF_FAIL_CASE_COUNT="1"
+
+BENCHMARK_SIGNALTEST_FAIL_CASE_COUNT="1"
+
+BENCHMARK_OPENSSL_FAIL_CASE_COUNT="1"
diff --git a/fuego-ro/boards/docker.board b/fuego-ro/boards/docker.board
new file mode 100644
index 0000000..13a0e78
--- /dev/null
+++ b/fuego-ro/boards/docker.board
@@ -0,0 +1,11 @@
+inherit "base-board"
+include "base-params"
+
+IPADDR="127.0.0.1"
+SRV_IP="127.0.0.1"
+#LOGIN="root"
+#PASSWORD="root"
+BOARD_TESTDIR="$FUEGO_RW/tests"
+PLATFORM="x86_64"
+TRANSPORT="local"
+ARCHITECTURE="x86_64"
diff --git a/fuego-ro/boards/lager.board b/fuego-ro/boards/lager.board
new file mode 100644
index 0000000..519c00c
--- /dev/null
+++ b/fuego-ro/boards/lager.board
@@ -0,0 +1,32 @@
+inherit "base-board"
+include "base-params"
+include "base-funcs"
+
+IPADDR="192.168.13.13"
+SSH_PORT="22"
+LOGIN="root"
+BOARD_TESTDIR="/home/a"
+PASSWORD=""
+PLATFORM="lager"
+TRANSPORT="ssh"
+ARCHITECTURE="arm"
+
+SATA_DEV="/dev/sda1"
+SATA_MP="/mnt/sata"
+
+USB_DEV="/dev/sdb1"
+USB_MP="/mnt/usb"
+
+MMC_DEV="/dev/mmcblk0p2"
+MMC_MP="/mnt/mmc"
+
+BOARD.CAP_LIST="RENESAS"
+
+BENCHMARK_DHRYSTONE_LOOPS="100000000"
+
+LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
+LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
+EXPAT_SUBTEST_COUNT_POS="1769"
+EXPAT_SUBTEST_COUNT_NEG="41"
+
+override SRV_IP="192.168.13.1"
\ No newline at end of file
diff --git a/fuego-ro/boards/qemu-arm.board b/fuego-ro/boards/qemu-arm.board
new file mode 100644
index 0000000..41a9712
--- /dev/null
+++ b/fuego-ro/boards/qemu-arm.board
@@ -0,0 +1,26 @@
+inherit "base-board"
+include "base-params"
+
+IPADDR="172.17.0.1"
+SSH_PORT=5555
+LOGIN="root"
+BOARD_TESTDIR="/home/a"
+PASSWORD="adm"
+PLATFORM="qemu-armv7hf"
+TRANSPORT="ssh"
+ARCHITECTURE="arm"
+
+SATA_DEV="/dev/sdb1"
+SATA_MP="/mnt/sata"
+
+USB_DEV="/dev/sda1"
+USB_MP="/mnt/usb"
+
+MMC_DEV="/dev/mmcblk0p2"
+MMC_MP="/mnt/mmc"
+
+LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1319"
+LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="169"
+
+EXPAT_SUBTEST_COUNT_POS="1769"
+EXPAT_SUBTEST_COUNT_NEG="41"
\ No newline at end of file
diff --git a/fuego-ro/boards/template-dev.board b/fuego-ro/boards/template-dev.board
new file mode 100644
index 0000000..00e1565
--- /dev/null
+++ b/fuego-ro/boards/template-dev.board
@@ -0,0 +1,25 @@
+inherit "base-board"
+include "base-params"
+
+IPADDR="set_ip_here"
+LOGIN="root"
+BOARD_TESTDIR="/home/a"
+PASSWORD=""
+PLATFORM="set platform here (see tools.sh)"
+TRANSPORT="ssh"
+ARCHITECTURE="set_ia32_or_arm_here"
+
+SATA_DEV="/dev/sdb1"
+SATA_MP="/mnt/sata"
+
+USB_DEV="/dev/sda1"
+USB_MP="/mnt/usb"
+
+MMC_DEV="/dev/mmcblk0p2"
+MMC_MP="/mnt/mmc"
+
+LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1319"
+LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="169"
+
+EXPAT_SUBTEST_COUNT_POS="1769"
+EXPAT_SUBTEST_COUNT_NEG="41"
\ No newline at end of file
diff --git a/fuego-ro/conf/boards/README b/fuego-ro/conf/boards/README
deleted file mode 100644
index bf20dc8..0000000
--- a/fuego-ro/conf/boards/README
+++ /dev/null
@@ -1,4 +0,0 @@
-This directory contains board files.
-
-See docs for reference on what variables should they define.
-
diff --git a/fuego-ro/conf/boards/bbb.board b/fuego-ro/conf/boards/bbb.board
deleted file mode 100644
index df4afac..0000000
--- a/fuego-ro/conf/boards/bbb.board
+++ /dev/null
@@ -1,26 +0,0 @@
-inherit "base-board"
-include "base-params"
-
-IPADDR="192.168.7.2"
-SRV_IP="192.168.7.1"
-LOGIN="root"
-BOARD_TESTDIR="/tests"
-PASSWORD="root"
-PLATFORM="qemu-armv7hf"
-TRANSPORT="ssh"
-ARCHITECTURE="arm"
-
-SATA_DEV="/dev/sdb1"
-SATA_MP="/mnt/sata"
-
-USB_DEV="/dev/sda1"
-USB_MP="/mnt/usb"
-
-MMC_DEV="/dev/mmcblk0p2"
-MMC_MP="/mnt/mmc"
-
-MAX_REBOOT_RETRIES="3"
-LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
-LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
-EXPAT_SUBTEST_COUNT_POS="1769"
-EXPAT_SUBTEST_COUNT_NEG="41"
diff --git a/fuego-ro/conf/boards/beaglebone-serial.board b/fuego-ro/conf/boards/beaglebone-serial.board
deleted file mode 100644
index 1237e71..0000000
--- a/fuego-ro/conf/boards/beaglebone-serial.board
+++ /dev/null
@@ -1,43 +0,0 @@
-inherit "base-board"
-include "base-params"
-include "base-funcs"
-
-SERIAL="ttyACM1"
-BAUD="115200"
-LOGIN="root"
-BOARD_TESTDIR="/home/a"
-PASSWORD=""
-PLATFORM="poky-qemuarm"
-TRANSPORT="serial"
-IO_TIME_SERIAL="0.1"
-ARCHITECTURE="arm"
-SATA_DEV="/dev/sda1"
-SATA_MP="/mnt/sata"
-
-USB_DEV="/dev/sdb1"
-USB_MP="/mnt/usb"
-
-MMC_DEV="/dev/mmcblk0p1"
-MMC_MP="/mnt/mmc"
-
-#BOARD.CAP_LIST="RENESAS"
-
-BENCHMARK_DHRYSTONE_LOOPS="100000000"
-
-LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
-LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
-EXPAT_SUBTEST_COUNT_POS="1769"
-EXPAT_SUBTEST_COUNT_NEG="41"
-
-FUNCTIONAL_SCIFAB_RES_LINES_COUNT="1"
-FUNCTIONAL_STRESS_FAIL_CASE_COUNT="1"
-FUNCTIONAL_CMT_FAIL_CASE_COUNT="1"
-FUNCTIONAL_SCIFAB_FAIL_CASE_COUNT="1"
-FUNCTIONAL_BZIP2_FAIL_CASE_COUNT="1"
-
-FUNCTIONAL_SDHI_0_RES_LINES_COUNT="1"
-BENCHMARK_NETPERF_FAIL_CASE_COUNT="1"
-
-BENCHMARK_SIGNALTEST_FAIL_CASE_COUNT="1"
-
-BENCHMARK_OPENSSL_FAIL_CASE_COUNT="1"
diff --git a/fuego-ro/conf/boards/docker.board b/fuego-ro/conf/boards/docker.board
deleted file mode 100644
index 13a0e78..0000000
--- a/fuego-ro/conf/boards/docker.board
+++ /dev/null
@@ -1,11 +0,0 @@
-inherit "base-board"
-include "base-params"
-
-IPADDR="127.0.0.1"
-SRV_IP="127.0.0.1"
-#LOGIN="root"
-#PASSWORD="root"
-BOARD_TESTDIR="$FUEGO_RW/tests"
-PLATFORM="x86_64"
-TRANSPORT="local"
-ARCHITECTURE="x86_64"
diff --git a/fuego-ro/conf/boards/lager.board b/fuego-ro/conf/boards/lager.board
deleted file mode 100644
index 519c00c..0000000
--- a/fuego-ro/conf/boards/lager.board
+++ /dev/null
@@ -1,32 +0,0 @@
-inherit "base-board"
-include "base-params"
-include "base-funcs"
-
-IPADDR="192.168.13.13"
-SSH_PORT="22"
-LOGIN="root"
-BOARD_TESTDIR="/home/a"
-PASSWORD=""
-PLATFORM="lager"
-TRANSPORT="ssh"
-ARCHITECTURE="arm"
-
-SATA_DEV="/dev/sda1"
-SATA_MP="/mnt/sata"
-
-USB_DEV="/dev/sdb1"
-USB_MP="/mnt/usb"
-
-MMC_DEV="/dev/mmcblk0p2"
-MMC_MP="/mnt/mmc"
-
-BOARD.CAP_LIST="RENESAS"
-
-BENCHMARK_DHRYSTONE_LOOPS="100000000"
-
-LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
-LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
-EXPAT_SUBTEST_COUNT_POS="1769"
-EXPAT_SUBTEST_COUNT_NEG="41"
-
-override SRV_IP="192.168.13.1"
\ No newline at end of file
diff --git a/fuego-ro/conf/boards/qemu-arm.board b/fuego-ro/conf/boards/qemu-arm.board
deleted file mode 100644
index 41a9712..0000000
--- a/fuego-ro/conf/boards/qemu-arm.board
+++ /dev/null
@@ -1,26 +0,0 @@
-inherit "base-board"
-include "base-params"
-
-IPADDR="172.17.0.1"
-SSH_PORT=5555
-LOGIN="root"
-BOARD_TESTDIR="/home/a"
-PASSWORD="adm"
-PLATFORM="qemu-armv7hf"
-TRANSPORT="ssh"
-ARCHITECTURE="arm"
-
-SATA_DEV="/dev/sdb1"
-SATA_MP="/mnt/sata"
-
-USB_DEV="/dev/sda1"
-USB_MP="/mnt/usb"
-
-MMC_DEV="/dev/mmcblk0p2"
-MMC_MP="/mnt/mmc"
-
-LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1319"
-LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="169"
-
-EXPAT_SUBTEST_COUNT_POS="1769"
-EXPAT_SUBTEST_COUNT_NEG="41"
\ No newline at end of file
diff --git a/fuego-ro/conf/boards/template-dev.board b/fuego-ro/conf/boards/template-dev.board
deleted file mode 100644
index 00e1565..0000000
--- a/fuego-ro/conf/boards/template-dev.board
+++ /dev/null
@@ -1,25 +0,0 @@
-inherit "base-board"
-include "base-params"
-
-IPADDR="set_ip_here"
-LOGIN="root"
-BOARD_TESTDIR="/home/a"
-PASSWORD=""
-PLATFORM="set platform here (see tools.sh)"
-TRANSPORT="ssh"
-ARCHITECTURE="set_ia32_or_arm_here"
-
-SATA_DEV="/dev/sdb1"
-SATA_MP="/mnt/sata"
-
-USB_DEV="/dev/sda1"
-USB_MP="/mnt/usb"
-
-MMC_DEV="/dev/mmcblk0p2"
-MMC_MP="/mnt/mmc"
-
-LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1319"
-LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="169"
-
-EXPAT_SUBTEST_COUNT_POS="1769"
-EXPAT_SUBTEST_COUNT_NEG="41"
\ No newline at end of file
-- 
2.7.4



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

* [Fuego] [PATCH 2/5] README: no need to run ftc as jenkins anymore
  2017-03-30  0:51 ` [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards Daniel Sangorrin
@ 2017-03-30  0:51   ` Daniel Sangorrin
  2017-03-30 19:02     ` Bird, Timothy
  2017-03-30  0:51   ` [Fuego] [PATCH 3/5] distrib: the DISTRIB variable should be in the board files Daniel Sangorrin
                     ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Daniel Sangorrin @ 2017-03-30  0:51 UTC (permalink / raw)
  To: fuego

This was fixed in ftc with the user_check function

Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
---
 README | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README b/README
index 398a38e..1dc2d73 100644
--- a/README
+++ b/README
@@ -79,13 +79,13 @@ Initial test
 You can use the docker container as a fuego target in order to confirm that
 the installation was successful.
 
-# sudo -u jenkins ftc add-nodes docker
-# sudo -u jenkins ftc add-jobs -b docker -p testplan_docker
+# ftc add-nodes docker
+# ftc add-jobs -b docker -p testplan_docker
 
 On the Jenkins interface, build the "docker.testplan_docker.batch" job.
 It will trigger the rest of the jobs. To remove the jobs use:
 
-# sudo -u jenkins ftc rm-jobs docker.testplan_docker.*.*
+# ftc rm-jobs docker.testplan_docker.*.*
 
 License
 -------------------------------------------------------------------------------
-- 
2.7.4



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

* [Fuego] [PATCH 3/5] distrib: the DISTRIB variable should be in the board files
  2017-03-30  0:51 ` [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards Daniel Sangorrin
  2017-03-30  0:51   ` [Fuego] [PATCH 2/5] README: no need to run ftc as jenkins anymore Daniel Sangorrin
@ 2017-03-30  0:51   ` Daniel Sangorrin
  2017-03-30 19:04     ` Bird, Timothy
  2017-03-30  0:51   ` [Fuego] [PATCH 4/5] doc: add-nodes is now the way to add nodes in fuego Daniel Sangorrin
                     ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Daniel Sangorrin @ 2017-03-30  0:51 UTC (permalink / raw)
  To: fuego

TODO: update other board files

Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
---
 fuego-ro/boards/docker.board | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fuego-ro/boards/docker.board b/fuego-ro/boards/docker.board
index 13a0e78..55386fb 100644
--- a/fuego-ro/boards/docker.board
+++ b/fuego-ro/boards/docker.board
@@ -9,3 +9,4 @@ BOARD_TESTDIR="$FUEGO_RW/tests"
 PLATFORM="x86_64"
 TRANSPORT="local"
 ARCHITECTURE="x86_64"
+DISTRIB="nosyslogd.dist"
-- 
2.7.4



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

* [Fuego] [PATCH 4/5] doc: add-nodes is now the way to add nodes in fuego
  2017-03-30  0:51 ` [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards Daniel Sangorrin
  2017-03-30  0:51   ` [Fuego] [PATCH 2/5] README: no need to run ftc as jenkins anymore Daniel Sangorrin
  2017-03-30  0:51   ` [Fuego] [PATCH 3/5] distrib: the DISTRIB variable should be in the board files Daniel Sangorrin
@ 2017-03-30  0:51   ` Daniel Sangorrin
  2017-03-30 19:05     ` Bird, Timothy
  2017-03-30  0:52   ` [Fuego] [PATCH 5/5] README: add add-jobs example using testspec Daniel Sangorrin
  2017-03-30 18:49   ` [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards Bird, Timothy
  4 siblings, 1 reply; 11+ messages in thread
From: Daniel Sangorrin @ 2017-03-30  0:51 UTC (permalink / raw)
  To: fuego

Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
---
 docs/source/board_config.tex | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/docs/source/board_config.tex b/docs/source/board_config.tex
index e71bd7d..8fc1145 100644
--- a/docs/source/board_config.tex
+++ b/docs/source/board_config.tex
@@ -10,18 +10,7 @@ where \texttt{<boardname>} is the respective name of the target.
 
 \subsection{Adding a target in Jenkins interface}
 \label{sec:target-add}
-The simplest method of adding a new target is to copy from an existing one.
-We provide \textit{template-dev} board for that purpose.
-\begin{enumerate}
-\item Open a browser window to the \href{http://localhost:8080/}{Fuego web interface}
-\item Click on \textbf{Target status}
-\item Click on \textbf{New node}
-\item Fill in the \textit{Node name} input field witht he name of the new board
-\item Choose \textit{Copy Existing Node}. And enter name of the source node, namely, \textit{template-dev}
-\item You will be forwarded to node configuration page.
-Locate the \textit{Environment variables} section in \textit{Node Properties}.
-Specify the path to board config file [\ref{sec:board_config}] using the variable \textbf{BOARD\_OVERLAY}.
-\end{enumerate}
+The simplest method of adding a new target is to use the ftc add-nodes tool.
 
 \subsection{Writing the board config overlay}
 \label{sec:board_config}
-- 
2.7.4



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

* [Fuego] [PATCH 5/5] README: add add-jobs example using testspec
  2017-03-30  0:51 ` [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards Daniel Sangorrin
                     ` (2 preceding siblings ...)
  2017-03-30  0:51   ` [Fuego] [PATCH 4/5] doc: add-nodes is now the way to add nodes in fuego Daniel Sangorrin
@ 2017-03-30  0:52   ` Daniel Sangorrin
  2017-03-30 19:13     ` Bird, Timothy
  2017-03-30 18:49   ` [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards Bird, Timothy
  4 siblings, 1 reply; 11+ messages in thread
From: Daniel Sangorrin @ 2017-03-30  0:52 UTC (permalink / raw)
  To: fuego

Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
---
 README | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README b/README
index 1dc2d73..0b093d9 100644
--- a/README
+++ b/README
@@ -81,6 +81,7 @@ the installation was successful.
 
 # ftc add-nodes docker
 # ftc add-jobs -b docker -p testplan_docker
+# ftc add-jobs -b docker -t Benchmark.Dhrystone -s default
 
 On the Jenkins interface, build the "docker.testplan_docker.batch" job.
 It will trigger the rest of the jobs. To remove the jobs use:
-- 
2.7.4



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

* Re: [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards
  2017-03-30  0:51 ` [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards Daniel Sangorrin
                     ` (3 preceding siblings ...)
  2017-03-30  0:52   ` [Fuego] [PATCH 5/5] README: add add-jobs example using testspec Daniel Sangorrin
@ 2017-03-30 18:49   ` Bird, Timothy
  4 siblings, 0 replies; 11+ messages in thread
From: Bird, Timothy @ 2017-03-30 18:49 UTC (permalink / raw)
  To: Daniel Sangorrin, fuego

Looks good.

Acked-by: Tim Bird

> -----Original Message-----
> From: Daniel Sangorrin on Wednesday, March 29, 2017 5:52 PM
> To: fuego@lists.linuxfoundation.org
> Subject: [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards
> 
> Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
> ---
>  docs/source/board_config.tex                 |  2 +-
>  fuego-ro/boards/README                       |  4 +++
>  fuego-ro/boards/bbb.board                    | 26 +++++++++++++++++
>  fuego-ro/boards/beaglebone-serial.board      | 43
> ++++++++++++++++++++++++++++
>  fuego-ro/boards/docker.board                 | 11 +++++++
>  fuego-ro/boards/lager.board                  | 32 +++++++++++++++++++++
>  fuego-ro/boards/qemu-arm.board               | 26 +++++++++++++++++
>  fuego-ro/boards/template-dev.board           | 25 ++++++++++++++++
>  fuego-ro/conf/boards/README                  |  4 ---
>  fuego-ro/conf/boards/bbb.board               | 26 -----------------
>  fuego-ro/conf/boards/beaglebone-serial.board | 43 ----------------------------
>  fuego-ro/conf/boards/docker.board            | 11 -------
>  fuego-ro/conf/boards/lager.board             | 32 ---------------------
>  fuego-ro/conf/boards/qemu-arm.board          | 26 -----------------
>  fuego-ro/conf/boards/template-dev.board      | 25 ----------------
>  15 files changed, 168 insertions(+), 168 deletions(-)
>  create mode 100644 fuego-ro/boards/README
>  create mode 100644 fuego-ro/boards/bbb.board
>  create mode 100644 fuego-ro/boards/beaglebone-serial.board
>  create mode 100644 fuego-ro/boards/docker.board
>  create mode 100644 fuego-ro/boards/lager.board
>  create mode 100644 fuego-ro/boards/qemu-arm.board
>  create mode 100644 fuego-ro/boards/template-dev.board
>  delete mode 100644 fuego-ro/conf/boards/README
>  delete mode 100644 fuego-ro/conf/boards/bbb.board
>  delete mode 100644 fuego-ro/conf/boards/beaglebone-serial.board
>  delete mode 100644 fuego-ro/conf/boards/docker.board
>  delete mode 100644 fuego-ro/conf/boards/lager.board
>  delete mode 100644 fuego-ro/conf/boards/qemu-arm.board
>  delete mode 100644 fuego-ro/conf/boards/template-dev.board
> 
> diff --git a/docs/source/board_config.tex b/docs/source/board_config.tex
> index 1910e60..e71bd7d 100644
> --- a/docs/source/board_config.tex
> +++ b/docs/source/board_config.tex
> @@ -5,7 +5,7 @@ In this document we will use such notions as
> \textit{targets} and \textit{boards
>  \item[Board] denotes a back-end entity, such as a physical board
> (specifically, the board or device to run tests on).
>  \end{description}
> 
> -Board configuration is stored in
> \texttt{FUEGO\_RO/conf/boards/<boardname>.board},
> +Board configuration is stored in
> \texttt{FUEGO\_RO/boards/<boardname>.board},
>  where \texttt{<boardname>} is the respective name of the target.
> 
>  \subsection{Adding a target in Jenkins interface}
> diff --git a/fuego-ro/boards/README b/fuego-ro/boards/README
> new file mode 100644
> index 0000000..bf20dc8
> --- /dev/null
> +++ b/fuego-ro/boards/README
> @@ -0,0 +1,4 @@
> +This directory contains board files.
> +
> +See docs for reference on what variables should they define.
> +
> diff --git a/fuego-ro/boards/bbb.board b/fuego-ro/boards/bbb.board
> new file mode 100644
> index 0000000..df4afac
> --- /dev/null
> +++ b/fuego-ro/boards/bbb.board
> @@ -0,0 +1,26 @@
> +inherit "base-board"
> +include "base-params"
> +
> +IPADDR="192.168.7.2"
> +SRV_IP="192.168.7.1"
> +LOGIN="root"
> +BOARD_TESTDIR="/tests"
> +PASSWORD="root"
> +PLATFORM="qemu-armv7hf"
> +TRANSPORT="ssh"
> +ARCHITECTURE="arm"
> +
> +SATA_DEV="/dev/sdb1"
> +SATA_MP="/mnt/sata"
> +
> +USB_DEV="/dev/sda1"
> +USB_MP="/mnt/usb"
> +
> +MMC_DEV="/dev/mmcblk0p2"
> +MMC_MP="/mnt/mmc"
> +
> +MAX_REBOOT_RETRIES="3"
> +LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
> +LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
> +EXPAT_SUBTEST_COUNT_POS="1769"
> +EXPAT_SUBTEST_COUNT_NEG="41"
> diff --git a/fuego-ro/boards/beaglebone-serial.board b/fuego-
> ro/boards/beaglebone-serial.board
> new file mode 100644
> index 0000000..1237e71
> --- /dev/null
> +++ b/fuego-ro/boards/beaglebone-serial.board
> @@ -0,0 +1,43 @@
> +inherit "base-board"
> +include "base-params"
> +include "base-funcs"
> +
> +SERIAL="ttyACM1"
> +BAUD="115200"
> +LOGIN="root"
> +BOARD_TESTDIR="/home/a"
> +PASSWORD=""
> +PLATFORM="poky-qemuarm"
> +TRANSPORT="serial"
> +IO_TIME_SERIAL="0.1"
> +ARCHITECTURE="arm"
> +SATA_DEV="/dev/sda1"
> +SATA_MP="/mnt/sata"
> +
> +USB_DEV="/dev/sdb1"
> +USB_MP="/mnt/usb"
> +
> +MMC_DEV="/dev/mmcblk0p1"
> +MMC_MP="/mnt/mmc"
> +
> +#BOARD.CAP_LIST="RENESAS"
> +
> +BENCHMARK_DHRYSTONE_LOOPS="100000000"
> +
> +LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
> +LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
> +EXPAT_SUBTEST_COUNT_POS="1769"
> +EXPAT_SUBTEST_COUNT_NEG="41"
> +
> +FUNCTIONAL_SCIFAB_RES_LINES_COUNT="1"
> +FUNCTIONAL_STRESS_FAIL_CASE_COUNT="1"
> +FUNCTIONAL_CMT_FAIL_CASE_COUNT="1"
> +FUNCTIONAL_SCIFAB_FAIL_CASE_COUNT="1"
> +FUNCTIONAL_BZIP2_FAIL_CASE_COUNT="1"
> +
> +FUNCTIONAL_SDHI_0_RES_LINES_COUNT="1"
> +BENCHMARK_NETPERF_FAIL_CASE_COUNT="1"
> +
> +BENCHMARK_SIGNALTEST_FAIL_CASE_COUNT="1"
> +
> +BENCHMARK_OPENSSL_FAIL_CASE_COUNT="1"
> diff --git a/fuego-ro/boards/docker.board b/fuego-ro/boards/docker.board
> new file mode 100644
> index 0000000..13a0e78
> --- /dev/null
> +++ b/fuego-ro/boards/docker.board
> @@ -0,0 +1,11 @@
> +inherit "base-board"
> +include "base-params"
> +
> +IPADDR="127.0.0.1"
> +SRV_IP="127.0.0.1"
> +#LOGIN="root"
> +#PASSWORD="root"
> +BOARD_TESTDIR="$FUEGO_RW/tests"
> +PLATFORM="x86_64"
> +TRANSPORT="local"
> +ARCHITECTURE="x86_64"
> diff --git a/fuego-ro/boards/lager.board b/fuego-ro/boards/lager.board
> new file mode 100644
> index 0000000..519c00c
> --- /dev/null
> +++ b/fuego-ro/boards/lager.board
> @@ -0,0 +1,32 @@
> +inherit "base-board"
> +include "base-params"
> +include "base-funcs"
> +
> +IPADDR="192.168.13.13"
> +SSH_PORT="22"
> +LOGIN="root"
> +BOARD_TESTDIR="/home/a"
> +PASSWORD=""
> +PLATFORM="lager"
> +TRANSPORT="ssh"
> +ARCHITECTURE="arm"
> +
> +SATA_DEV="/dev/sda1"
> +SATA_MP="/mnt/sata"
> +
> +USB_DEV="/dev/sdb1"
> +USB_MP="/mnt/usb"
> +
> +MMC_DEV="/dev/mmcblk0p2"
> +MMC_MP="/mnt/mmc"
> +
> +BOARD.CAP_LIST="RENESAS"
> +
> +BENCHMARK_DHRYSTONE_LOOPS="100000000"
> +
> +LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
> +LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
> +EXPAT_SUBTEST_COUNT_POS="1769"
> +EXPAT_SUBTEST_COUNT_NEG="41"
> +
> +override SRV_IP="192.168.13.1"
> \ No newline at end of file
> diff --git a/fuego-ro/boards/qemu-arm.board b/fuego-ro/boards/qemu-
> arm.board
> new file mode 100644
> index 0000000..41a9712
> --- /dev/null
> +++ b/fuego-ro/boards/qemu-arm.board
> @@ -0,0 +1,26 @@
> +inherit "base-board"
> +include "base-params"
> +
> +IPADDR="172.17.0.1"
> +SSH_PORT=5555
> +LOGIN="root"
> +BOARD_TESTDIR="/home/a"
> +PASSWORD="adm"
> +PLATFORM="qemu-armv7hf"
> +TRANSPORT="ssh"
> +ARCHITECTURE="arm"
> +
> +SATA_DEV="/dev/sdb1"
> +SATA_MP="/mnt/sata"
> +
> +USB_DEV="/dev/sda1"
> +USB_MP="/mnt/usb"
> +
> +MMC_DEV="/dev/mmcblk0p2"
> +MMC_MP="/mnt/mmc"
> +
> +LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1319"
> +LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="169"
> +
> +EXPAT_SUBTEST_COUNT_POS="1769"
> +EXPAT_SUBTEST_COUNT_NEG="41"
> \ No newline at end of file
> diff --git a/fuego-ro/boards/template-dev.board b/fuego-
> ro/boards/template-dev.board
> new file mode 100644
> index 0000000..00e1565
> --- /dev/null
> +++ b/fuego-ro/boards/template-dev.board
> @@ -0,0 +1,25 @@
> +inherit "base-board"
> +include "base-params"
> +
> +IPADDR="set_ip_here"
> +LOGIN="root"
> +BOARD_TESTDIR="/home/a"
> +PASSWORD=""
> +PLATFORM="set platform here (see tools.sh)"
> +TRANSPORT="ssh"
> +ARCHITECTURE="set_ia32_or_arm_here"
> +
> +SATA_DEV="/dev/sdb1"
> +SATA_MP="/mnt/sata"
> +
> +USB_DEV="/dev/sda1"
> +USB_MP="/mnt/usb"
> +
> +MMC_DEV="/dev/mmcblk0p2"
> +MMC_MP="/mnt/mmc"
> +
> +LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1319"
> +LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="169"
> +
> +EXPAT_SUBTEST_COUNT_POS="1769"
> +EXPAT_SUBTEST_COUNT_NEG="41"
> \ No newline at end of file
> diff --git a/fuego-ro/conf/boards/README b/fuego-ro/conf/boards/README
> deleted file mode 100644
> index bf20dc8..0000000
> --- a/fuego-ro/conf/boards/README
> +++ /dev/null
> @@ -1,4 +0,0 @@
> -This directory contains board files.
> -
> -See docs for reference on what variables should they define.
> -
> diff --git a/fuego-ro/conf/boards/bbb.board b/fuego-
> ro/conf/boards/bbb.board
> deleted file mode 100644
> index df4afac..0000000
> --- a/fuego-ro/conf/boards/bbb.board
> +++ /dev/null
> @@ -1,26 +0,0 @@
> -inherit "base-board"
> -include "base-params"
> -
> -IPADDR="192.168.7.2"
> -SRV_IP="192.168.7.1"
> -LOGIN="root"
> -BOARD_TESTDIR="/tests"
> -PASSWORD="root"
> -PLATFORM="qemu-armv7hf"
> -TRANSPORT="ssh"
> -ARCHITECTURE="arm"
> -
> -SATA_DEV="/dev/sdb1"
> -SATA_MP="/mnt/sata"
> -
> -USB_DEV="/dev/sda1"
> -USB_MP="/mnt/usb"
> -
> -MMC_DEV="/dev/mmcblk0p2"
> -MMC_MP="/mnt/mmc"
> -
> -MAX_REBOOT_RETRIES="3"
> -LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
> -LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
> -EXPAT_SUBTEST_COUNT_POS="1769"
> -EXPAT_SUBTEST_COUNT_NEG="41"
> diff --git a/fuego-ro/conf/boards/beaglebone-serial.board b/fuego-
> ro/conf/boards/beaglebone-serial.board
> deleted file mode 100644
> index 1237e71..0000000
> --- a/fuego-ro/conf/boards/beaglebone-serial.board
> +++ /dev/null
> @@ -1,43 +0,0 @@
> -inherit "base-board"
> -include "base-params"
> -include "base-funcs"
> -
> -SERIAL="ttyACM1"
> -BAUD="115200"
> -LOGIN="root"
> -BOARD_TESTDIR="/home/a"
> -PASSWORD=""
> -PLATFORM="poky-qemuarm"
> -TRANSPORT="serial"
> -IO_TIME_SERIAL="0.1"
> -ARCHITECTURE="arm"
> -SATA_DEV="/dev/sda1"
> -SATA_MP="/mnt/sata"
> -
> -USB_DEV="/dev/sdb1"
> -USB_MP="/mnt/usb"
> -
> -MMC_DEV="/dev/mmcblk0p1"
> -MMC_MP="/mnt/mmc"
> -
> -#BOARD.CAP_LIST="RENESAS"
> -
> -BENCHMARK_DHRYSTONE_LOOPS="100000000"
> -
> -LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
> -LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
> -EXPAT_SUBTEST_COUNT_POS="1769"
> -EXPAT_SUBTEST_COUNT_NEG="41"
> -
> -FUNCTIONAL_SCIFAB_RES_LINES_COUNT="1"
> -FUNCTIONAL_STRESS_FAIL_CASE_COUNT="1"
> -FUNCTIONAL_CMT_FAIL_CASE_COUNT="1"
> -FUNCTIONAL_SCIFAB_FAIL_CASE_COUNT="1"
> -FUNCTIONAL_BZIP2_FAIL_CASE_COUNT="1"
> -
> -FUNCTIONAL_SDHI_0_RES_LINES_COUNT="1"
> -BENCHMARK_NETPERF_FAIL_CASE_COUNT="1"
> -
> -BENCHMARK_SIGNALTEST_FAIL_CASE_COUNT="1"
> -
> -BENCHMARK_OPENSSL_FAIL_CASE_COUNT="1"
> diff --git a/fuego-ro/conf/boards/docker.board b/fuego-
> ro/conf/boards/docker.board
> deleted file mode 100644
> index 13a0e78..0000000
> --- a/fuego-ro/conf/boards/docker.board
> +++ /dev/null
> @@ -1,11 +0,0 @@
> -inherit "base-board"
> -include "base-params"
> -
> -IPADDR="127.0.0.1"
> -SRV_IP="127.0.0.1"
> -#LOGIN="root"
> -#PASSWORD="root"
> -BOARD_TESTDIR="$FUEGO_RW/tests"
> -PLATFORM="x86_64"
> -TRANSPORT="local"
> -ARCHITECTURE="x86_64"
> diff --git a/fuego-ro/conf/boards/lager.board b/fuego-
> ro/conf/boards/lager.board
> deleted file mode 100644
> index 519c00c..0000000
> --- a/fuego-ro/conf/boards/lager.board
> +++ /dev/null
> @@ -1,32 +0,0 @@
> -inherit "base-board"
> -include "base-params"
> -include "base-funcs"
> -
> -IPADDR="192.168.13.13"
> -SSH_PORT="22"
> -LOGIN="root"
> -BOARD_TESTDIR="/home/a"
> -PASSWORD=""
> -PLATFORM="lager"
> -TRANSPORT="ssh"
> -ARCHITECTURE="arm"
> -
> -SATA_DEV="/dev/sda1"
> -SATA_MP="/mnt/sata"
> -
> -USB_DEV="/dev/sdb1"
> -USB_MP="/mnt/usb"
> -
> -MMC_DEV="/dev/mmcblk0p2"
> -MMC_MP="/mnt/mmc"
> -
> -BOARD.CAP_LIST="RENESAS"
> -
> -BENCHMARK_DHRYSTONE_LOOPS="100000000"
> -
> -LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1232"
> -LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="158"
> -EXPAT_SUBTEST_COUNT_POS="1769"
> -EXPAT_SUBTEST_COUNT_NEG="41"
> -
> -override SRV_IP="192.168.13.1"
> \ No newline at end of file
> diff --git a/fuego-ro/conf/boards/qemu-arm.board b/fuego-
> ro/conf/boards/qemu-arm.board
> deleted file mode 100644
> index 41a9712..0000000
> --- a/fuego-ro/conf/boards/qemu-arm.board
> +++ /dev/null
> @@ -1,26 +0,0 @@
> -inherit "base-board"
> -include "base-params"
> -
> -IPADDR="172.17.0.1"
> -SSH_PORT=5555
> -LOGIN="root"
> -BOARD_TESTDIR="/home/a"
> -PASSWORD="adm"
> -PLATFORM="qemu-armv7hf"
> -TRANSPORT="ssh"
> -ARCHITECTURE="arm"
> -
> -SATA_DEV="/dev/sdb1"
> -SATA_MP="/mnt/sata"
> -
> -USB_DEV="/dev/sda1"
> -USB_MP="/mnt/usb"
> -
> -MMC_DEV="/dev/mmcblk0p2"
> -MMC_MP="/mnt/mmc"
> -
> -LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1319"
> -LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="169"
> -
> -EXPAT_SUBTEST_COUNT_POS="1769"
> -EXPAT_SUBTEST_COUNT_NEG="41"
> \ No newline at end of file
> diff --git a/fuego-ro/conf/boards/template-dev.board b/fuego-
> ro/conf/boards/template-dev.board
> deleted file mode 100644
> index 00e1565..0000000
> --- a/fuego-ro/conf/boards/template-dev.board
> +++ /dev/null
> @@ -1,25 +0,0 @@
> -inherit "base-board"
> -include "base-params"
> -
> -IPADDR="set_ip_here"
> -LOGIN="root"
> -BOARD_TESTDIR="/home/a"
> -PASSWORD=""
> -PLATFORM="set platform here (see tools.sh)"
> -TRANSPORT="ssh"
> -ARCHITECTURE="set_ia32_or_arm_here"
> -
> -SATA_DEV="/dev/sdb1"
> -SATA_MP="/mnt/sata"
> -
> -USB_DEV="/dev/sda1"
> -USB_MP="/mnt/usb"
> -
> -MMC_DEV="/dev/mmcblk0p2"
> -MMC_MP="/mnt/mmc"
> -
> -LTP_OPEN_POSIX_SUBTEST_COUNT_POS="1319"
> -LTP_OPEN_POSIX_SUBTEST_COUNT_NEG="169"
> -
> -EXPAT_SUBTEST_COUNT_POS="1769"
> -EXPAT_SUBTEST_COUNT_NEG="41"
> \ No newline at end of file
> --
> 2.7.4
> 
> 
> _______________________________________________
> Fuego mailing list
> Fuego@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/fuego

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

* Re: [Fuego] [PATCH 2/5] README: no need to run ftc as jenkins anymore
  2017-03-30  0:51   ` [Fuego] [PATCH 2/5] README: no need to run ftc as jenkins anymore Daniel Sangorrin
@ 2017-03-30 19:02     ` Bird, Timothy
  0 siblings, 0 replies; 11+ messages in thread
From: Bird, Timothy @ 2017-03-30 19:02 UTC (permalink / raw)
  To: Daniel Sangorrin, fuego

Acked-by: Tim Bird

Thanks.
 -- Tim

> -----Original Message-----
> From: fuego-bounces@lists.linuxfoundation.org [mailto:fuego-
> bounces@lists.linuxfoundation.org] On Behalf Of Daniel Sangorrin
> Sent: Wednesday, March 29, 2017 5:52 PM
> To: fuego@lists.linuxfoundation.org
> Subject: [Fuego] [PATCH 2/5] README: no need to run ftc as jenkins
> anymore
> 
> This was fixed in ftc with the user_check function
> 
> Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
> ---
>  README | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/README b/README
> index 398a38e..1dc2d73 100644
> --- a/README
> +++ b/README
> @@ -79,13 +79,13 @@ Initial test
>  You can use the docker container as a fuego target in order to confirm that
>  the installation was successful.
> 
> -# sudo -u jenkins ftc add-nodes docker
> -# sudo -u jenkins ftc add-jobs -b docker -p testplan_docker
> +# ftc add-nodes docker
> +# ftc add-jobs -b docker -p testplan_docker
> 
>  On the Jenkins interface, build the "docker.testplan_docker.batch" job.
>  It will trigger the rest of the jobs. To remove the jobs use:
> 
> -# sudo -u jenkins ftc rm-jobs docker.testplan_docker.*.*
> +# ftc rm-jobs docker.testplan_docker.*.*
> 
>  License
>  -------------------------------------------------------------------------------
> --
> 2.7.4
> 
> 
> _______________________________________________
> Fuego mailing list
> Fuego@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/fuego

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

* Re: [Fuego] [PATCH 3/5] distrib: the DISTRIB variable should be in the board files
  2017-03-30  0:51   ` [Fuego] [PATCH 3/5] distrib: the DISTRIB variable should be in the board files Daniel Sangorrin
@ 2017-03-30 19:04     ` Bird, Timothy
  0 siblings, 0 replies; 11+ messages in thread
From: Bird, Timothy @ 2017-03-30 19:04 UTC (permalink / raw)
  To: Daniel Sangorrin, fuego

Acked-by: Tim Bird

I'll look at the other boards old config.xml files, and try to set their DISTRIBs as well.

Thanks,
 -- Tim

> -----Original Message-----
> From: fuego-bounces@lists.linuxfoundation.org [mailto:fuego-
> bounces@lists.linuxfoundation.org] On Behalf Of Daniel Sangorrin
> Sent: Wednesday, March 29, 2017 5:52 PM
> To: fuego@lists.linuxfoundation.org
> Subject: [Fuego] [PATCH 3/5] distrib: the DISTRIB variable should be in the
> board files
> 
> TODO: update other board files
> 
> Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
> ---
>  fuego-ro/boards/docker.board | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/fuego-ro/boards/docker.board b/fuego-ro/boards/docker.board
> index 13a0e78..55386fb 100644
> --- a/fuego-ro/boards/docker.board
> +++ b/fuego-ro/boards/docker.board
> @@ -9,3 +9,4 @@ BOARD_TESTDIR="$FUEGO_RW/tests"
>  PLATFORM="x86_64"
>  TRANSPORT="local"
>  ARCHITECTURE="x86_64"
> +DISTRIB="nosyslogd.dist"
> --
> 2.7.4
> 
> 
> _______________________________________________
> Fuego mailing list
> Fuego@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/fuego

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

* Re: [Fuego] [PATCH 4/5] doc: add-nodes is now the way to add nodes in fuego
  2017-03-30  0:51   ` [Fuego] [PATCH 4/5] doc: add-nodes is now the way to add nodes in fuego Daniel Sangorrin
@ 2017-03-30 19:05     ` Bird, Timothy
  0 siblings, 0 replies; 11+ messages in thread
From: Bird, Timothy @ 2017-03-30 19:05 UTC (permalink / raw)
  To: Daniel Sangorrin, fuego

Using the tool is much simpler.  Good doc change.  Thanks.

BTW - On my to-do list is changing the documentation from
tex to ascii doc, but there's so much other stuff to do I haven't
gotten to it.

Acked-by: Tim Bird
 -- Tim


> -----Original Message-----
> From: fuego-bounces@lists.linuxfoundation.org [mailto:fuego-
> bounces@lists.linuxfoundation.org] On Behalf Of Daniel Sangorrin
> Sent: Wednesday, March 29, 2017 5:52 PM
> To: fuego@lists.linuxfoundation.org
> Subject: [Fuego] [PATCH 4/5] doc: add-nodes is now the way to add nodes in
> fuego
> 
> Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
> ---
>  docs/source/board_config.tex | 13 +------------
>  1 file changed, 1 insertion(+), 12 deletions(-)
> 
> diff --git a/docs/source/board_config.tex b/docs/source/board_config.tex
> index e71bd7d..8fc1145 100644
> --- a/docs/source/board_config.tex
> +++ b/docs/source/board_config.tex
> @@ -10,18 +10,7 @@ where \texttt{<boardname>} is the respective name
> of the target.
> 
>  \subsection{Adding a target in Jenkins interface}
>  \label{sec:target-add}
> -The simplest method of adding a new target is to copy from an existing one.
> -We provide \textit{template-dev} board for that purpose.
> -\begin{enumerate}
> -\item Open a browser window to the \href{http://localhost:8080/}{Fuego
> web interface}
> -\item Click on \textbf{Target status}
> -\item Click on \textbf{New node}
> -\item Fill in the \textit{Node name} input field witht he name of the new
> board
> -\item Choose \textit{Copy Existing Node}. And enter name of the source
> node, namely, \textit{template-dev}
> -\item You will be forwarded to node configuration page.
> -Locate the \textit{Environment variables} section in \textit{Node
> Properties}.
> -Specify the path to board config file [\ref{sec:board_config}] using the
> variable \textbf{BOARD\_OVERLAY}.
> -\end{enumerate}
> +The simplest method of adding a new target is to use the ftc add-nodes
> tool.
> 
>  \subsection{Writing the board config overlay}
>  \label{sec:board_config}
> --
> 2.7.4
> 
> 
> _______________________________________________
> Fuego mailing list
> Fuego@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/fuego

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

* Re: [Fuego] [PATCH 5/5] README: add add-jobs example using testspec
  2017-03-30  0:52   ` [Fuego] [PATCH 5/5] README: add add-jobs example using testspec Daniel Sangorrin
@ 2017-03-30 19:13     ` Bird, Timothy
  0 siblings, 0 replies; 11+ messages in thread
From: Bird, Timothy @ 2017-03-30 19:13 UTC (permalink / raw)
  To: Daniel Sangorrin, fuego

Acked-by: Tim Bird
 -- Tim

> -----Original Message-----
> From: fuego-bounces@lists.linuxfoundation.org [mailto:fuego-
> bounces@lists.linuxfoundation.org] On Behalf Of Daniel Sangorrin
> Sent: Wednesday, March 29, 2017 5:52 PM
> To: fuego@lists.linuxfoundation.org
> Subject: [Fuego] [PATCH 5/5] README: add add-jobs example using testspec
> 
> Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
> ---
>  README | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/README b/README
> index 1dc2d73..0b093d9 100644
> --- a/README
> +++ b/README
> @@ -81,6 +81,7 @@ the installation was successful.
> 
>  # ftc add-nodes docker
>  # ftc add-jobs -b docker -p testplan_docker
> +# ftc add-jobs -b docker -t Benchmark.Dhrystone -s default
> 
>  On the Jenkins interface, build the "docker.testplan_docker.batch" job.
>  It will trigger the rest of the jobs. To remove the jobs use:
> --
> 2.7.4
> 
> 
> _______________________________________________
> Fuego mailing list
> Fuego@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/fuego

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

end of thread, other threads:[~2017-03-30 19:13 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-30  0:51 [Fuego] updates to fuego/ (boards path, distrib, readme) Daniel Sangorrin
2017-03-30  0:51 ` [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards Daniel Sangorrin
2017-03-30  0:51   ` [Fuego] [PATCH 2/5] README: no need to run ftc as jenkins anymore Daniel Sangorrin
2017-03-30 19:02     ` Bird, Timothy
2017-03-30  0:51   ` [Fuego] [PATCH 3/5] distrib: the DISTRIB variable should be in the board files Daniel Sangorrin
2017-03-30 19:04     ` Bird, Timothy
2017-03-30  0:51   ` [Fuego] [PATCH 4/5] doc: add-nodes is now the way to add nodes in fuego Daniel Sangorrin
2017-03-30 19:05     ` Bird, Timothy
2017-03-30  0:52   ` [Fuego] [PATCH 5/5] README: add add-jobs example using testspec Daniel Sangorrin
2017-03-30 19:13     ` Bird, Timothy
2017-03-30 18:49   ` [Fuego] [PATCH 1/5] boards: change folder to fuego-ro/boards Bird, Timothy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.