From 6d8eefa36a3a3d6d096fe13d1fff99f8a917b2ac Mon Sep 17 00:00:00 2001 From: Loïc Collignon Date: Wed, 1 Mar 2017 16:14:29 +0100 Subject: Changed submodules URL to use https instead of ssh. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I8614cca0ad386bdf6d2339e014a85d790da04d87 Signed-off-by: Loïc Collignon --- .gitmodules | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index 4df8d50c..de99e87d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,15 +1,15 @@ [submodule "src/libs/openxc-message-format"] path = src/libs/openxc-message-format - url = git@github.com:openxc/openxc-message-format.git + url = https://github.com/openxc/openxc-message-format.git [submodule "src/libs/nanopb"] path = src/libs/nanopb - url = git@github.com:nanopb/nanopb.git + url = https://github.com/nanopb/nanopb.git [submodule "src/libs/uds-c"] path = src/libs/uds-c - url = git@github.com:openxc/uds-c.git + url = https://github.com/openxc/uds-c.git [submodule "src/libs/bitfield-c"] path = src/libs/bitfield-c - url = git@github.com:openxc/bitfield-c.git + url = https://github.com/openxc/bitfield-c.git [submodule "src/libs/isotp-c"] path = src/libs/isotp-c - url = git@github.com:openxc/isotp-c.git + url = https://github.com/openxc/isotp-c.git -- cgit 1.2.3-korg From e320a0bc3f6a40cf7b6c7cd2e708de419dc4006c Mon Sep 17 00:00:00 2001 From: Loïc Collignon Date: Wed, 1 Mar 2017 16:19:25 +0100 Subject: Updated the README.md to clarify the use of git submodule. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Iceec81be36b217f69565452955da2f4ea43e10e9 Signed-off-by: Loïc Collignon --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fb44d569..ee33a7e4 100644 --- a/README.md +++ b/README.md @@ -2,5 +2,11 @@ Low level CAN bus binder. Based upon OpenXC vi-firmware project. -# Prerequirements +# Getting started + +This repo make use of git submodule, make sure to execute the following commands : + ~/CAN_Signaling$ git submodule init + ~/CAN_Signaling$ git submodule update + +# Prerequirements -- cgit 1.2.3-korg