[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Minios-devel] [UNIKRAFT/LIBGOOGLETEST PATCH 2/3] Add documentation


  • To: "minios-devel@xxxxxxxxxxxxx" <minios-devel@xxxxxxxxxxxxx>
  • From: Vlad-Andrei BĂDOIU (78692) <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
  • Date: Mon, 22 Jul 2019 16:29:56 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1;spf=pass smtp.mailfrom=stud.acs.upb.ro;dmarc=pass action=none header.from=stud.acs.upb.ro;dkim=pass header.d=stud.acs.upb.ro;arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=fIfnKcCia+B3edukQomTFZhhhd6BcI5wiFBofzs4b9w=; b=RSzG0faM7dnIVCrj+JJc09EwTWfO5wgAm3PvtRX0h9TEyquqRrOOPE1uSXDxErZOVvN1g4ZL7qns94NPvwuTshhRrwjyQeTE+Kp6KCbLc0aKfozmxAS2C7AmIqjWw1RjCNp1ICDoNNIbm/b4WQFILWLPoNbyxJ27JOYlysc+tIU1AjeS0+dH/N1N+DjLuC4WET6WZgUKMjs/jInrzWgTWKrSe2aoOZaLRRQUyRVpRkfxZAyxJg/Rm2joGbPZmw0e5YedHPlFYacBs/OesV46dIUMdeqVIZDwEoHPvVuFIpRSHVKVdYIYr9BfdftMg1Zm79gdgOhkp6OQsLtSD/sobw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=MMgoUdhkwn+CoE0s1b5k6wI+1ZZAAGxJkVd+uRi6WSbiIfT2tOk04cHvWgvGTC2jgQuKHm7FCfnJMqm+b6WHX01SHxsQweAzkAAfP0Wwk5baXuM4T9NKI8xr3PUcAJqI3u5plkDbvd10zUJSkpx2pxYoshUtp3FMHPF50T+Y9bRa4mzc4Ek5+BuHMOFLThUSPSGqCp8yVj05rpBfLjP90JjwOZCbcKLIPPmmgvkJtKO0Z9x4B/p1UeuMEapQOPYTGIIgKd/JCTIu19M4mJy0NXANpxLfynbBqN9xpjpJQXMbgGg2CC99EFu4ZpCg65VD5gnIcusTdoMzAq3qqRzwoQ==
  • Authentication-results: spf=none (sender IP is ) smtp.mailfrom=vlad_andrei.badoiu@xxxxxxxxxxxxxxx;
  • Cc: "felipe.huici@xxxxxxxxx" <felipe.huici@xxxxxxxxx>, Vlad-Andrei BĂDOIU (78692) <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>, "costin.lupu@xxxxxxxxx" <costin.lupu@xxxxxxxxx>
  • Delivery-date: Mon, 22 Jul 2019 16:30:12 +0000
  • List-id: Mini-os development list <minios-devel.lists.xenproject.org>
  • Thread-index: AQHVQKqz5AGDl9HukkWFVVzJNC/XJA==
  • Thread-topic: [UNIKRAFT/LIBGOOGLETEST PATCH 2/3] Add documentation

Signed-off-by: Vlad-Andrei Badoiu <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
---
 CODING_STYLE.md |  4 ++++
 CONTRIBUTING.md |  4 ++++
 COPYING.md      | 30 ++++++++++++++++++++++++++++++
 MAINTAINERS.md  | 11 +++++++++++
 README.md       |  5 +++++
 5 files changed, 54 insertions(+)
 create mode 100644 CODING_STYLE.md
 create mode 100644 CONTRIBUTING.md
 create mode 100644 COPYING.md
 create mode 100644 MAINTAINERS.md
 create mode 100644 README.md

diff --git a/CODING_STYLE.md b/CODING_STYLE.md
new file mode 100644
index 0000000..5730041
--- /dev/null
+++ b/CODING_STYLE.md
@@ -0,0 +1,4 @@
+Coding Style
+============
+
+Please refer to the `CODING_STYLE.md` file in the main Unikraft repository.
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..5f55eca
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,4 @@
+Contributing to Unikraft
+=======================
+
+Please refer to the `CONTRIBUTING.md` file in the main Unikraft repository.
diff --git a/COPYING.md b/COPYING.md
new file mode 100644
index 0000000..e28f3ef
--- /dev/null
+++ b/COPYING.md
@@ -0,0 +1,30 @@
+License
+=======
+
+Unikraft fxdiv wrappers
+-----------------------
+
+This repository contains wrapper code to build googletest with Unikraft.
+Each C code file in this repository should declare who is the
+copyright owner and under which terms and conditions the code is
+licensed. If such a licence note is missing, the following copyright
+notice will apply:
+
+       Copyright (c) 2019, University Politehnica of Bucharest. All rights 
+       reserved.
+
+       This library is free software; you can redistribute it and/or
+       modify it under the terms of the GNU Lesser General Public
+       License as published by the Free Software Foundation; either
+       version 2 of the License, or (at your option) any later version.
+       
+       This library is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+       Lesser General Public License for more details.
+       
+       You should have received a copy of the GNU Lesser General Public
+       License along with this library in the file COPYING.LIB;
+       if not, write to the Free Software Foundation, Inc.,
+       59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+
diff --git a/MAINTAINERS.md b/MAINTAINERS.md
new file mode 100644
index 0000000..e0535c0
--- /dev/null
+++ b/MAINTAINERS.md
@@ -0,0 +1,11 @@
+Maintainers List
+================
+
+For notes on how to read this information, please refer to `MAINTAINERS.md` in
+the main Unikraft repository.
+
+       LIBGOOGLETEST-UNIKRAFT
+       M:      Felipe Huici <felipe.huici@xxxxxxxxx>
+       M:      Vlad-Andrei Badoiu <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
+       L:      minios-devel@xxxxxxxxxxxxx
+       F: *
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..769a3a6
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+googletest for Unikraft
+===================
+
+Please refer to the `README.md` as well as the documentation in the `doc/`
+subdirectory of the main unikraft repository.
-- 
2.21.0


_______________________________________________
Minios-devel mailing list
Minios-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/minios-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.