From 70f86e932b50830ab4c803fbf9f99e6cf081954a Mon Sep 17 00:00:00 2001 From: Kristian Klausen Date: Thu, 11 Feb 2016 14:31:01 +0100 Subject: [PATCH 01/14] ntnu-b2xx: patches: Upgraded linux to v3.14.58 --- .../patches/linux/{3.14.16 => 3.14.58}/00-lctr-b2xx-dts.patch | 0 .../linux/{3.14.16 => 3.14.58}/00-lctr-b2xx-ntnu-x-dts.patch | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename systems/ntnu-b2xx/patches/linux/{3.14.16 => 3.14.58}/00-lctr-b2xx-dts.patch (100%) rename systems/ntnu-b2xx/patches/linux/{3.14.16 => 3.14.58}/00-lctr-b2xx-ntnu-x-dts.patch (100%) diff --git a/systems/ntnu-b2xx/patches/linux/3.14.16/00-lctr-b2xx-dts.patch b/systems/ntnu-b2xx/patches/linux/3.14.58/00-lctr-b2xx-dts.patch similarity index 100% rename from systems/ntnu-b2xx/patches/linux/3.14.16/00-lctr-b2xx-dts.patch rename to systems/ntnu-b2xx/patches/linux/3.14.58/00-lctr-b2xx-dts.patch diff --git a/systems/ntnu-b2xx/patches/linux/3.14.16/00-lctr-b2xx-ntnu-x-dts.patch b/systems/ntnu-b2xx/patches/linux/3.14.58/00-lctr-b2xx-ntnu-x-dts.patch similarity index 100% rename from systems/ntnu-b2xx/patches/linux/3.14.16/00-lctr-b2xx-ntnu-x-dts.patch rename to systems/ntnu-b2xx/patches/linux/3.14.58/00-lctr-b2xx-ntnu-x-dts.patch From febcfa0425ae528764fd11d164fdbe77a952b1fd Mon Sep 17 00:00:00 2001 From: Ricardo Martins Date: Thu, 11 Feb 2016 14:15:14 +0000 Subject: [PATCH 02/14] mkpackage: forced CURL to return error if download fails, remove file if download fails. --- mkpackage.bash | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mkpackage.bash b/mkpackage.bash index a5a360f..2a3d2a6 100755 --- a/mkpackage.bash +++ b/mkpackage.bash @@ -28,11 +28,13 @@ download_tool() { wget -c "$1" -O "$2" if [ $? -eq 0 ]; then + rm -f "$2" return 0 fi - curl -C - "$1" -o "$2" + curl -f -C - "$1" -o "$2" if [ $? -eq 0 ]; then + rm -f "$2" return 0 fi From 6075393a9737d4219bd08e2d71342cdfd8a34362 Mon Sep 17 00:00:00 2001 From: Ricardo Martins Date: Thu, 11 Feb 2016 14:26:24 +0000 Subject: [PATCH 03/14] mkpackage: fixed last commit logic. --- mkpackage.bash | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mkpackage.bash b/mkpackage.bash index 2a3d2a6..88746f8 100755 --- a/mkpackage.bash +++ b/mkpackage.bash @@ -28,16 +28,15 @@ download_tool() { wget -c "$1" -O "$2" if [ $? -eq 0 ]; then - rm -f "$2" return 0 fi curl -f -C - "$1" -o "$2" if [ $? -eq 0 ]; then - rm -f "$2" return 0 fi + rm -f "$2" return 1 } From 31911be6d5b65249f4b06943574da52039d8a5c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Braga?= Date: Fri, 19 Feb 2016 15:08:48 +0000 Subject: [PATCH 04/14] lctr-a6xx: added hg1700 sensor. --- systems/lctr-a6xx/lauv-xtreme-2.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/systems/lctr-a6xx/lauv-xtreme-2.cfg b/systems/lctr-a6xx/lauv-xtreme-2.cfg index 3265d6a..9f59464 100644 --- a/systems/lctr-a6xx/lauv-xtreme-2.cfg +++ b/systems/lctr-a6xx/lauv-xtreme-2.cfg @@ -1,2 +1,3 @@ cfg_hostname='lauv-xtreme-2' cfg_eth_ext_ip='10.0.10.50' +cfg_escc_script='/etc/escc/hg1700-psimar.sh' From 11becbd4861d143875e7ea440e7b5fd52381d371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Braga?= Date: Tue, 23 Feb 2016 16:15:37 +0000 Subject: [PATCH 05/14] lctr-a6xx: added caravela asv. --- systems/lctr-a6xx/caravela.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 systems/lctr-a6xx/caravela.cfg diff --git a/systems/lctr-a6xx/caravela.cfg b/systems/lctr-a6xx/caravela.cfg new file mode 100644 index 0000000..b769b74 --- /dev/null +++ b/systems/lctr-a6xx/caravela.cfg @@ -0,0 +1,2 @@ +cfg_hostname='caravela' +cfg_eth_ext_ip='10.0.10.40' From 45b3108cb4df2e4b37ee4f8123511ba257190aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Braga?= Date: Tue, 23 Feb 2016 16:16:54 +0000 Subject: [PATCH 06/14] lctr-a6xx: deleted a few systems. --- systems/lctr-a6xx/lauv-dolphin-1.cfg | 5 ----- systems/lctr-a6xx/lauv-dolphin-2.cfg | 6 ------ systems/lctr-a6xx/lauv-dolphin-3.cfg | 6 ------ systems/lctr-a6xx/lauv-lupis-1.cfg | 2 -- 4 files changed, 19 deletions(-) delete mode 100644 systems/lctr-a6xx/lauv-dolphin-1.cfg delete mode 100644 systems/lctr-a6xx/lauv-dolphin-2.cfg delete mode 100644 systems/lctr-a6xx/lauv-dolphin-3.cfg delete mode 100644 systems/lctr-a6xx/lauv-lupis-1.cfg diff --git a/systems/lctr-a6xx/lauv-dolphin-1.cfg b/systems/lctr-a6xx/lauv-dolphin-1.cfg deleted file mode 100644 index e5183c6..0000000 --- a/systems/lctr-a6xx/lauv-dolphin-1.cfg +++ /dev/null @@ -1,5 +0,0 @@ -cfg_hostname='lauv-dolphin-1' -cfg_eth_ext_ip='10.0.10.80' -cfg_packages="$cfg_packages" -cfg_escc_script='/etc/escc/ifog-imu-1-a.sh' -cfg_dune_i18n='C' diff --git a/systems/lctr-a6xx/lauv-dolphin-2.cfg b/systems/lctr-a6xx/lauv-dolphin-2.cfg deleted file mode 100644 index ed14a2c..0000000 --- a/systems/lctr-a6xx/lauv-dolphin-2.cfg +++ /dev/null @@ -1,6 +0,0 @@ -cfg_hostname='lauv-dolphin-2' -cfg_eth_ext_ip='10.0.10.140' -cfg_packages="$cfg_packages" -cfg_escc_script='/etc/escc/ifog-imu-1-a.sh' -cfg_escc_et='true' -cfg_dune_i18n='C' diff --git a/systems/lctr-a6xx/lauv-dolphin-3.cfg b/systems/lctr-a6xx/lauv-dolphin-3.cfg deleted file mode 100644 index 7308c04..0000000 --- a/systems/lctr-a6xx/lauv-dolphin-3.cfg +++ /dev/null @@ -1,6 +0,0 @@ -cfg_hostname='lauv-dolphin-3' -cfg_eth_ext_ip='10.0.10.150' -cfg_packages="$cfg_packages" -cfg_escc_script='/etc/escc/ifog-imu-1-a.sh' -cfg_escc_et='true' -cfg_dune_i18n='C' diff --git a/systems/lctr-a6xx/lauv-lupis-1.cfg b/systems/lctr-a6xx/lauv-lupis-1.cfg deleted file mode 100644 index b73ad04..0000000 --- a/systems/lctr-a6xx/lauv-lupis-1.cfg +++ /dev/null @@ -1,2 +0,0 @@ -cfg_hostname='lauv-lupis-1' -cfg_eth_ext_ip='10.0.10.130' From 23c58281c62934045714de3cf78f138b13b53553 Mon Sep 17 00:00:00 2001 From: mariacosta Date: Wed, 24 Feb 2016 14:18:47 +0000 Subject: [PATCH 07/14] lctr-b2xx: Added x8-05, x8-06, mariner-01 and deleted x8-03. --- systems/lctr-b2xx/mariner-01.cfg | 6 ++++++ systems/lctr-b2xx/x8-03.cfg | 5 ----- systems/lctr-b2xx/x8-05.cfg | 6 ++++++ systems/lctr-b2xx/x8-06.cfg | 6 ++++++ 4 files changed, 18 insertions(+), 5 deletions(-) create mode 100644 systems/lctr-b2xx/mariner-01.cfg delete mode 100644 systems/lctr-b2xx/x8-03.cfg create mode 100644 systems/lctr-b2xx/x8-05.cfg create mode 100644 systems/lctr-b2xx/x8-06.cfg diff --git a/systems/lctr-b2xx/mariner-01.cfg b/systems/lctr-b2xx/mariner-01.cfg new file mode 100644 index 0000000..477d7a4 --- /dev/null +++ b/systems/lctr-b2xx/mariner-01.cfg @@ -0,0 +1,6 @@ +cfg_hostname='mariner-01' +cfg_storage='data0:ext4:/opt' +cfg_eth_ext_ip='10.0.20.125' +cfg_eth_ext_mk='255.255.0.0' +cfg_eth_ext_gw='10.0.0.1' +cfg_packages='u-boot dropbear rsync busybox e2fsprogs ptpd i2c-tools am33xx-cm3/host linux libav' diff --git a/systems/lctr-b2xx/x8-03.cfg b/systems/lctr-b2xx/x8-03.cfg deleted file mode 100644 index eb934a4..0000000 --- a/systems/lctr-b2xx/x8-03.cfg +++ /dev/null @@ -1,5 +0,0 @@ -cfg_hostname='x8-03' -cfg_storage='data0:ext4:/opt' -cfg_eth_ext_ip='10.0.20.110' -cfg_eth_ext_mk='255.255.0.0' -cfg_eth_ext_gw='10.0.0.1' diff --git a/systems/lctr-b2xx/x8-05.cfg b/systems/lctr-b2xx/x8-05.cfg new file mode 100644 index 0000000..54a62cf --- /dev/null +++ b/systems/lctr-b2xx/x8-05.cfg @@ -0,0 +1,6 @@ +cfg_hostname='x8-05' +cfg_storage='data0:ext4:/opt' +cfg_eth_ext_ip='10.0.20.110' +cfg_eth_ext_mk='255.255.0.0' +cfg_eth_ext_gw='10.0.0.1' +cfg_packages='u-boot dropbear rsync busybox e2fsprogs ptpd i2c-tools am33xx-cm3/host linux libav' diff --git a/systems/lctr-b2xx/x8-06.cfg b/systems/lctr-b2xx/x8-06.cfg new file mode 100644 index 0000000..acffa92 --- /dev/null +++ b/systems/lctr-b2xx/x8-06.cfg @@ -0,0 +1,6 @@ +cfg_hostname='x8-06' +cfg_storage='data0:ext4:/opt' +cfg_eth_ext_ip='10.0.20.115' +cfg_eth_ext_mk='255.255.0.0' +cfg_eth_ext_gw='10.0.0.1' +cfg_packages='u-boot dropbear rsync busybox e2fsprogs ptpd i2c-tools am33xx-cm3/host linux libav' From 18fb81b606ec6068cdbb2954a30acd69eee712e3 Mon Sep 17 00:00:00 2001 From: mariacosta Date: Wed, 24 Feb 2016 14:20:59 +0000 Subject: [PATCH 08/14] lctr-b2xx: Updated aero-01 cfg_packages. --- systems/lctr-b2xx/aero-01.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/systems/lctr-b2xx/aero-01.cfg b/systems/lctr-b2xx/aero-01.cfg index 2492db0..c32446a 100644 --- a/systems/lctr-b2xx/aero-01.cfg +++ b/systems/lctr-b2xx/aero-01.cfg @@ -3,4 +3,5 @@ cfg_storage='data0:ext4:/opt' cfg_eth_ext_ip='10.0.20.120' cfg_eth_ext_mk='255.255.0.0' cfg_eth_ext_gw='10.0.0.1' +cfg_packages='u-boot dropbear rsync busybox e2fsprogs ptpd i2c-tools am33xx-cm3/host linux libav' From 8bfe1eb5c0f5e61acee8f1c3fe112f289ec2a766 Mon Sep 17 00:00:00 2001 From: mariacosta Date: Wed, 24 Feb 2016 14:22:32 +0000 Subject: [PATCH 09/14] lctr-a9xx: Deleted x8-01 and x8-04. --- systems/lctr-a9xx/x8-01.cfg | 2 -- systems/lctr-a9xx/x8-04.cfg | 2 -- 2 files changed, 4 deletions(-) delete mode 100644 systems/lctr-a9xx/x8-01.cfg delete mode 100644 systems/lctr-a9xx/x8-04.cfg diff --git a/systems/lctr-a9xx/x8-01.cfg b/systems/lctr-a9xx/x8-01.cfg deleted file mode 100644 index 0724965..0000000 --- a/systems/lctr-a9xx/x8-01.cfg +++ /dev/null @@ -1,2 +0,0 @@ -cfg_hostname='x8-01' -cfg_eth_ext_ip='10.0.20.100' diff --git a/systems/lctr-a9xx/x8-04.cfg b/systems/lctr-a9xx/x8-04.cfg deleted file mode 100644 index ee7f29a..0000000 --- a/systems/lctr-a9xx/x8-04.cfg +++ /dev/null @@ -1,2 +0,0 @@ -cfg_hostname='x8-04' -cfg_eth_ext_ip='10.0.20.115' From 98d9eb21f7753072af5ca864319b98c6a278aa02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Braga?= Date: Mon, 29 Feb 2016 17:37:19 +0000 Subject: [PATCH 10/14] lctr-a6xx: modified IP on lauv-noptilus-1 and lauv-xplore-2. --- systems/lctr-a6xx/lauv-noptilus-1.cfg | 2 +- systems/lctr-a6xx/lauv-xplore-2.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/lctr-a6xx/lauv-noptilus-1.cfg b/systems/lctr-a6xx/lauv-noptilus-1.cfg index 967e1db..09fd82d 100644 --- a/systems/lctr-a6xx/lauv-noptilus-1.cfg +++ b/systems/lctr-a6xx/lauv-noptilus-1.cfg @@ -1,3 +1,3 @@ cfg_hostname='lauv-noptilus-1' -cfg_eth_ext_ip='10.0.10.60' +cfg_eth_ext_ip='10.0.10.80' cfg_escc_script='/etc/escc/hg1700-psimar.sh' \ No newline at end of file diff --git a/systems/lctr-a6xx/lauv-xplore-2.cfg b/systems/lctr-a6xx/lauv-xplore-2.cfg index 3a3864d..e51a351 100644 --- a/systems/lctr-a6xx/lauv-xplore-2.cfg +++ b/systems/lctr-a6xx/lauv-xplore-2.cfg @@ -1,2 +1,2 @@ cfg_hostname='lauv-xplore-2' -cfg_eth_ext_ip='10.0.10.180' +cfg_eth_ext_ip='10.0.10.130' From e12ae5d839159f65b7fc4c9809f634e4b5e43578 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Braga?= Date: Mon, 29 Feb 2016 17:37:42 +0000 Subject: [PATCH 11/14] lauv-aux-rpi: modified IP on lauv-xplore-2-aux. --- systems/lauv-aux-rpi/lauv-xplore-2-aux.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/lauv-aux-rpi/lauv-xplore-2-aux.cfg b/systems/lauv-aux-rpi/lauv-xplore-2-aux.cfg index 67f7aed..1c472f5 100644 --- a/systems/lauv-aux-rpi/lauv-xplore-2-aux.cfg +++ b/systems/lauv-aux-rpi/lauv-xplore-2-aux.cfg @@ -1,5 +1,5 @@ cfg_hostname='lauv-xplore-2-aux' -cfg_eth_ext_ip='10.0.10.183' +cfg_eth_ext_ip='10.0.10.133' cfg_eth_ext_mk='255.255.0.0' cfg_eth_ext_gw='10.0.0.1' cfg_ptpd_interface='eth0' From a4ac22d3f2b33b6f4536bafabd3b97e36e2fd5fa Mon Sep 17 00:00:00 2001 From: Ricardo Martins Date: Mon, 7 Mar 2016 10:12:03 +0000 Subject: [PATCH 12/14] linux: upgraded to v3.14.63. --- rules/linux-headers/cross.bash | 4 ++-- rules/linux/default.bash | 4 ++-- .../lauv-atom/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} | 0 systems/lauv-aux/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} | 0 .../patches/linux/{3.14.58 => 3.14.63}/00-lauv-aux-dts.patch | 0 .../linux/{3.14.58 => 3.14.63}/0007-cpsw-search-for-phy.patch | 0 .../lctr-a6xx/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} | 0 .../patches/linux/{3.14.58 => 3.14.63}/00-aim104-com8.patch | 0 .../{3.14.58 => 3.14.63}/90-st16654-fifo-trigger-16.patch | 0 .../lctr-a9xx/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} | 0 .../patches/linux/{3.14.58 => 3.14.63}/00-lctr-a9xx-dts.patch | 0 .../lctr-b2xx/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} | 0 .../patches/linux/{3.14.58 => 3.14.63}/00-lctr-b2xx-dts.patch | 0 .../linux/{3.14.58 => 3.14.63}/00-lctr-b2xx-ntnu-x-dts.patch | 0 .../linux/{3.14.58 => 3.14.63}/0007-cpsw-search-for-phy.patch | 0 .../ntnu-b2xx/cfg/{linux-3.14.16.cfg => linux-3.14.63.cfg} | 0 .../patches/linux/{3.14.58 => 3.14.63}/00-lctr-b2xx-dts.patch | 0 .../linux/{3.14.58 => 3.14.63}/00-lctr-b2xx-ntnu-x-dts.patch | 0 .../qemu-i686/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} | 0 19 files changed, 4 insertions(+), 4 deletions(-) rename systems/lauv-atom/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} (100%) rename systems/lauv-aux/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} (100%) rename systems/lauv-aux/patches/linux/{3.14.58 => 3.14.63}/00-lauv-aux-dts.patch (100%) rename systems/lauv-aux/patches/linux/{3.14.58 => 3.14.63}/0007-cpsw-search-for-phy.patch (100%) rename systems/lctr-a6xx/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} (100%) rename systems/lctr-a6xx/patches/linux/{3.14.58 => 3.14.63}/00-aim104-com8.patch (100%) rename systems/lctr-a6xx/patches/linux/{3.14.58 => 3.14.63}/90-st16654-fifo-trigger-16.patch (100%) rename systems/lctr-a9xx/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} (100%) rename systems/lctr-a9xx/patches/linux/{3.14.58 => 3.14.63}/00-lctr-a9xx-dts.patch (100%) rename systems/lctr-b2xx/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} (100%) rename systems/lctr-b2xx/patches/linux/{3.14.58 => 3.14.63}/00-lctr-b2xx-dts.patch (100%) rename systems/lctr-b2xx/patches/linux/{3.14.58 => 3.14.63}/00-lctr-b2xx-ntnu-x-dts.patch (100%) rename systems/lctr-b2xx/patches/linux/{3.14.58 => 3.14.63}/0007-cpsw-search-for-phy.patch (100%) rename systems/ntnu-b2xx/cfg/{linux-3.14.16.cfg => linux-3.14.63.cfg} (100%) rename systems/ntnu-b2xx/patches/linux/{3.14.58 => 3.14.63}/00-lctr-b2xx-dts.patch (100%) rename systems/ntnu-b2xx/patches/linux/{3.14.58 => 3.14.63}/00-lctr-b2xx-ntnu-x-dts.patch (100%) rename systems/qemu-i686/cfg/{linux-3.14.58.cfg => linux-3.14.63.cfg} (100%) diff --git a/rules/linux-headers/cross.bash b/rules/linux-headers/cross.bash index 965361f..6608f77 100644 --- a/rules/linux-headers/cross.bash +++ b/rules/linux-headers/cross.bash @@ -1,6 +1,6 @@ version=\ ( - '3.14.31' + '3.14.63' ) url=\ @@ -10,7 +10,7 @@ url=\ md5=\ ( - 'f37ac2b5675ac59e46103f81e5f31624' + '6cf8a6b23849f47f511e0e46cfdb6392' ) maintainer=\ diff --git a/rules/linux/default.bash b/rules/linux/default.bash index a163f74..30a2727 100644 --- a/rules/linux/default.bash +++ b/rules/linux/default.bash @@ -1,6 +1,6 @@ version=\ ( - '3.14.58' + '3.14.63' ) url=\ @@ -10,7 +10,7 @@ url=\ md5=\ ( - '98e68ad6e8e1d399708b6846e335519c' + '6cf8a6b23849f47f511e0e46cfdb6392' ) maintainer=\ diff --git a/systems/lauv-atom/cfg/linux-3.14.58.cfg b/systems/lauv-atom/cfg/linux-3.14.63.cfg similarity index 100% rename from systems/lauv-atom/cfg/linux-3.14.58.cfg rename to systems/lauv-atom/cfg/linux-3.14.63.cfg diff --git a/systems/lauv-aux/cfg/linux-3.14.58.cfg b/systems/lauv-aux/cfg/linux-3.14.63.cfg similarity index 100% rename from systems/lauv-aux/cfg/linux-3.14.58.cfg rename to systems/lauv-aux/cfg/linux-3.14.63.cfg diff --git a/systems/lauv-aux/patches/linux/3.14.58/00-lauv-aux-dts.patch b/systems/lauv-aux/patches/linux/3.14.63/00-lauv-aux-dts.patch similarity index 100% rename from systems/lauv-aux/patches/linux/3.14.58/00-lauv-aux-dts.patch rename to systems/lauv-aux/patches/linux/3.14.63/00-lauv-aux-dts.patch diff --git a/systems/lauv-aux/patches/linux/3.14.58/0007-cpsw-search-for-phy.patch b/systems/lauv-aux/patches/linux/3.14.63/0007-cpsw-search-for-phy.patch similarity index 100% rename from systems/lauv-aux/patches/linux/3.14.58/0007-cpsw-search-for-phy.patch rename to systems/lauv-aux/patches/linux/3.14.63/0007-cpsw-search-for-phy.patch diff --git a/systems/lctr-a6xx/cfg/linux-3.14.58.cfg b/systems/lctr-a6xx/cfg/linux-3.14.63.cfg similarity index 100% rename from systems/lctr-a6xx/cfg/linux-3.14.58.cfg rename to systems/lctr-a6xx/cfg/linux-3.14.63.cfg diff --git a/systems/lctr-a6xx/patches/linux/3.14.58/00-aim104-com8.patch b/systems/lctr-a6xx/patches/linux/3.14.63/00-aim104-com8.patch similarity index 100% rename from systems/lctr-a6xx/patches/linux/3.14.58/00-aim104-com8.patch rename to systems/lctr-a6xx/patches/linux/3.14.63/00-aim104-com8.patch diff --git a/systems/lctr-a6xx/patches/linux/3.14.58/90-st16654-fifo-trigger-16.patch b/systems/lctr-a6xx/patches/linux/3.14.63/90-st16654-fifo-trigger-16.patch similarity index 100% rename from systems/lctr-a6xx/patches/linux/3.14.58/90-st16654-fifo-trigger-16.patch rename to systems/lctr-a6xx/patches/linux/3.14.63/90-st16654-fifo-trigger-16.patch diff --git a/systems/lctr-a9xx/cfg/linux-3.14.58.cfg b/systems/lctr-a9xx/cfg/linux-3.14.63.cfg similarity index 100% rename from systems/lctr-a9xx/cfg/linux-3.14.58.cfg rename to systems/lctr-a9xx/cfg/linux-3.14.63.cfg diff --git a/systems/lctr-a9xx/patches/linux/3.14.58/00-lctr-a9xx-dts.patch b/systems/lctr-a9xx/patches/linux/3.14.63/00-lctr-a9xx-dts.patch similarity index 100% rename from systems/lctr-a9xx/patches/linux/3.14.58/00-lctr-a9xx-dts.patch rename to systems/lctr-a9xx/patches/linux/3.14.63/00-lctr-a9xx-dts.patch diff --git a/systems/lctr-b2xx/cfg/linux-3.14.58.cfg b/systems/lctr-b2xx/cfg/linux-3.14.63.cfg similarity index 100% rename from systems/lctr-b2xx/cfg/linux-3.14.58.cfg rename to systems/lctr-b2xx/cfg/linux-3.14.63.cfg diff --git a/systems/lctr-b2xx/patches/linux/3.14.58/00-lctr-b2xx-dts.patch b/systems/lctr-b2xx/patches/linux/3.14.63/00-lctr-b2xx-dts.patch similarity index 100% rename from systems/lctr-b2xx/patches/linux/3.14.58/00-lctr-b2xx-dts.patch rename to systems/lctr-b2xx/patches/linux/3.14.63/00-lctr-b2xx-dts.patch diff --git a/systems/lctr-b2xx/patches/linux/3.14.58/00-lctr-b2xx-ntnu-x-dts.patch b/systems/lctr-b2xx/patches/linux/3.14.63/00-lctr-b2xx-ntnu-x-dts.patch similarity index 100% rename from systems/lctr-b2xx/patches/linux/3.14.58/00-lctr-b2xx-ntnu-x-dts.patch rename to systems/lctr-b2xx/patches/linux/3.14.63/00-lctr-b2xx-ntnu-x-dts.patch diff --git a/systems/lctr-b2xx/patches/linux/3.14.58/0007-cpsw-search-for-phy.patch b/systems/lctr-b2xx/patches/linux/3.14.63/0007-cpsw-search-for-phy.patch similarity index 100% rename from systems/lctr-b2xx/patches/linux/3.14.58/0007-cpsw-search-for-phy.patch rename to systems/lctr-b2xx/patches/linux/3.14.63/0007-cpsw-search-for-phy.patch diff --git a/systems/ntnu-b2xx/cfg/linux-3.14.16.cfg b/systems/ntnu-b2xx/cfg/linux-3.14.63.cfg similarity index 100% rename from systems/ntnu-b2xx/cfg/linux-3.14.16.cfg rename to systems/ntnu-b2xx/cfg/linux-3.14.63.cfg diff --git a/systems/ntnu-b2xx/patches/linux/3.14.58/00-lctr-b2xx-dts.patch b/systems/ntnu-b2xx/patches/linux/3.14.63/00-lctr-b2xx-dts.patch similarity index 100% rename from systems/ntnu-b2xx/patches/linux/3.14.58/00-lctr-b2xx-dts.patch rename to systems/ntnu-b2xx/patches/linux/3.14.63/00-lctr-b2xx-dts.patch diff --git a/systems/ntnu-b2xx/patches/linux/3.14.58/00-lctr-b2xx-ntnu-x-dts.patch b/systems/ntnu-b2xx/patches/linux/3.14.63/00-lctr-b2xx-ntnu-x-dts.patch similarity index 100% rename from systems/ntnu-b2xx/patches/linux/3.14.58/00-lctr-b2xx-ntnu-x-dts.patch rename to systems/ntnu-b2xx/patches/linux/3.14.63/00-lctr-b2xx-ntnu-x-dts.patch diff --git a/systems/qemu-i686/cfg/linux-3.14.58.cfg b/systems/qemu-i686/cfg/linux-3.14.63.cfg similarity index 100% rename from systems/qemu-i686/cfg/linux-3.14.58.cfg rename to systems/qemu-i686/cfg/linux-3.14.63.cfg From d7964b4c143a243fea300f92eefa1581d1f1d820 Mon Sep 17 00:00:00 2001 From: Ricardo Martins Date: Mon, 7 Mar 2016 10:19:55 +0000 Subject: [PATCH 13/14] Preparing release v2016.03. --- mkconfig.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkconfig.bash b/mkconfig.bash index 67cefc2..dc92799 100755 --- a/mkconfig.bash +++ b/mkconfig.bash @@ -23,7 +23,7 @@ ########################################################################### # Config: GLUED version. -cfg_glued_version='2015.12' +cfg_glued_version='2016.03' # Config: GLUED vendor. cfg_glued_vendor='lsts' From fd6fcdeb7bffa423fcdab82517ae4a83bcc02a1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Braga?= Date: Mon, 7 Mar 2016 10:48:50 +0000 Subject: [PATCH 14/14] lctr-b2xx: deleted a few systems. --- systems/lctr-b2xx/lauv-dolphin-1-doam.cfg | 7 ------- systems/lctr-b2xx/lauv-dolphin-2-aux.cfg | 6 ------ systems/lctr-b2xx/lauv-dolphin-3-aux.cfg | 6 ------ systems/lctr-b2xx/lauv-lupis-1-aux.cfg | 6 ------ 4 files changed, 25 deletions(-) delete mode 100644 systems/lctr-b2xx/lauv-dolphin-1-doam.cfg delete mode 100644 systems/lctr-b2xx/lauv-dolphin-2-aux.cfg delete mode 100644 systems/lctr-b2xx/lauv-dolphin-3-aux.cfg delete mode 100644 systems/lctr-b2xx/lauv-lupis-1-aux.cfg diff --git a/systems/lctr-b2xx/lauv-dolphin-1-doam.cfg b/systems/lctr-b2xx/lauv-dolphin-1-doam.cfg deleted file mode 100644 index 9ffa79d..0000000 --- a/systems/lctr-b2xx/lauv-dolphin-1-doam.cfg +++ /dev/null @@ -1,7 +0,0 @@ -cfg_hostname='lauv-dolphin-1-doam' -cfg_storage='data0:ext4:/opt data1:ext4:/opt/lsts/dune/log' -cfg_eth_ext_ip='10.0.10.83' -cfg_eth_ext_mk='255.255.0.0' -cfg_eth_ext_gw='10.0.0.1' -cfg_ptpd_interface='eth0' -cfg_target_linux_dtb='arch/arm/boot/dts/am335x-bone.dtb' diff --git a/systems/lctr-b2xx/lauv-dolphin-2-aux.cfg b/systems/lctr-b2xx/lauv-dolphin-2-aux.cfg deleted file mode 100644 index d38c906..0000000 --- a/systems/lctr-b2xx/lauv-dolphin-2-aux.cfg +++ /dev/null @@ -1,6 +0,0 @@ -cfg_hostname='lauv-dolphin-2-aux' -cfg_storage='data0:ext4:/opt data1:ext4:/opt/lsts/dune/log' -cfg_eth_ext_ip='10.0.10.143' -cfg_eth_ext_mk='255.255.0.0' -cfg_eth_ext_gw='10.0.0.1' -cfg_ptpd_interface='eth0' diff --git a/systems/lctr-b2xx/lauv-dolphin-3-aux.cfg b/systems/lctr-b2xx/lauv-dolphin-3-aux.cfg deleted file mode 100644 index 90e56d1..0000000 --- a/systems/lctr-b2xx/lauv-dolphin-3-aux.cfg +++ /dev/null @@ -1,6 +0,0 @@ -cfg_hostname='lauv-dolphin-3-aux' -cfg_storage='data0:ext4:/opt data1:ext4:/opt/lsts/dune/log' -cfg_eth_ext_ip='10.0.10.153' -cfg_eth_ext_mk='255.255.0.0' -cfg_eth_ext_gw='10.0.0.1' -cfg_ptpd_interface='eth0' diff --git a/systems/lctr-b2xx/lauv-lupis-1-aux.cfg b/systems/lctr-b2xx/lauv-lupis-1-aux.cfg deleted file mode 100644 index 80e6bb2..0000000 --- a/systems/lctr-b2xx/lauv-lupis-1-aux.cfg +++ /dev/null @@ -1,6 +0,0 @@ -# BeagleBone Black -cfg_hostname='lauv-lupis-1-aux' -cfg_eth_ext_ip='10.0.10.133' -cfg_eth_ext_mk='255.255.0.0' -cfg_eth_ext_gw='10.0.0.1' -cfg_ptpd_interface='eth0'