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

Re: [Minios-devel] [UNIKRAFT/LIBLUA PATCH 1/3] Introduce library skeleton


  • To: Felipe Huici <felipe.huici@xxxxxxxxx>, "minios-devel@xxxxxxxxxxxxx" <minios-devel@xxxxxxxxxxxxx>
  • From: "Justin He (Arm Technology China)" <Justin.He@xxxxxxx>
  • Date: Mon, 16 Sep 2019 04:39:51 +0000
  • Accept-language: en-US, zh-CN
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=arm.com; dmarc=pass action=none header.from=arm.com; dkim=pass header.d=arm.com; 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=lmjt4ZyEZqPu2KYBOMY1XD1Z79QaQukjlTE+hnJtQ+c=; b=Ek33Hvz3oyQe5qgopaeRvBVlvSr6KeFBANVCnivYIoUP+HURehdq7IrliVG16hEFz2prCt8sw+LzFkmYJG7Y/L+UFTsgIgR8rm8z8JWJn2NeTWAZo+er4S89wzsEM7u1880Z7denEjuTlnO/kyWBvP4mgJEXIVUXbhJFqgRrPCrzQvJA5c3GZq2nDSNrxZkbRI2/bUEw8D9PZ51SqNJo2/81MjY809ic6nYtTG96nbXAAjMpDDZ6IE38YzfWgSAUtVCFqLyldhLMWQnI+sTcipzPrKxshO7ObZLqR+ifphXV/PQjCIUoWXx2KVonzWDZ3cCjvrKlfp+cgCVwMHcgug==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=jA6l0vQ81b+g/Zj5oXAnLTxvYdzV116DmyAbRYC/i6LRi8/BYyxPb1SyxaW/nYANyenBDyr7b0DKz7Tu48I9I73aoGMK1EkHxwB4VnhYj+abr1RUB2S2e+RPxmdWV9MZ0ewi4MK3KTqRdourJYQx4I3k0MK6cdXVx1orErGsd/q3jdVfJYf37A4ToGGLe0RGuSJJTLICUHy2VIveJy8bPhgg1zeeK5Uq3IiaZ9T0mntSJi1CRbAR9cVgwdPY24qBqi5UVYZvQCv/OriClHocfJ+HS8H5PlIpIcd0WOxObV6bxPu5v4cvndImWSJ8iW9wB27RaDPgWBLDMJPbJW06ZQ==
  • Authentication-results: spf=temperror (sender IP is 63.35.35.123) smtp.mailfrom=arm.com; lists.xen.org; dkim=pass (signature was verified) header.d=armh.onmicrosoft.com;lists.xen.org; dmarc=none action=none header.from=arm.com;
  • Authentication-results-original: spf=none (sender IP is ) smtp.mailfrom=Justin.He@xxxxxxx;
  • Cc: Simon Kuenzer <simon.kuenzer@xxxxxxxxx>
  • Delivery-date: Mon, 16 Sep 2019 04:40:06 +0000
  • List-id: Mini-os development list <minios-devel.lists.xenproject.org>
  • Original-authentication-results: spf=none (sender IP is ) smtp.mailfrom=Justin.He@xxxxxxx;
  • Thread-index: AQHVXbVrV1mKZWyzZE6cFHhGC0sg06ct1h8w
  • Thread-topic: [Minios-devel] [UNIKRAFT/LIBLUA PATCH 1/3] Introduce library skeleton

Hi, Felipe
Reviewed-by: Jia He <justin.he@xxxxxxx>

> -----Original Message-----
> From: Minios-devel <minios-devel-bounces@xxxxxxxxxxxxxxxxxxxx> On Behalf
> Of Felipe Huici
> Sent: 2019年8月28日 23:29
> To: minios-devel@xxxxxxxxxxxxx
> Cc: Felipe Huici <felipe.huici@xxxxxxxxx>; Simon Kuenzer
> <simon.kuenzer@xxxxxxxxx>
> Subject: [Minios-devel] [UNIKRAFT/LIBLUA PATCH 1/3] Introduce library
> skeleton
>
> We use the BSD-3-Clause license for this library glue code.
>
> Signed-off-by: Felipe Huici <felipe.huici@xxxxxxxxx>
> Signed-off-by: Simon Kuenzer <simon.kuenzer@xxxxxxxxx>
> ---
>  .gitignore      | 27 +++++++++++++++++++++++++++
>  CODING_STYLE.md |  4 ++++
>  CONTRIBUTING.md |  4 ++++
>  COPYING.md      | 39 +++++++++++++++++++++++++++++++++++++++
>  Config.uk       |  4 ++++
>  MAINTAINERS.md  | 11 +++++++++++
>  README.md       |  9 +++++++++
>  7 files changed, 98 insertions(+)
>  create mode 100644 .gitignore
>  create mode 100644 CODING_STYLE.md
>  create mode 100644 CONTRIBUTING.md
>  create mode 100644 COPYING.md
>  create mode 100644 Config.uk
>  create mode 100644 MAINTAINERS.md
>  create mode 100644 README.md
>
> diff --git a/.gitignore b/.gitignore
> new file mode 100644
> index 0000000..795f4b3
> --- /dev/null
> +++ b/.gitignore
> @@ -0,0 +1,27 @@
> +*.depend
> +*.o
> +*.a
> +*.d
> +*.so
> +*.orig
> +*.rej
> +*.bak
> +*.swp
> +*~
> +,*
> +\#*\#
> +.\#*
> +\#_*\#
> +.\#_*
> +!.gitignore
> +.*
> +
> +# gnu global files
> +GPATH
> +GRTAGS
> +GSYMS
> +GTAGS
> +
> +# cscope files
> +cscope.*
> +ncscope.*
> \ No newline at end of file
> 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..14f6ac6
> --- /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..3b0a981
> --- /dev/null
> +++ b/COPYING.md
> @@ -0,0 +1,39 @@
> +License
> +=======
> +
> +Unikraft lua wrappers
> +----------------------------------
> +
> +This repository contains wrapper code to build lua 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) Year, Institution. All rights reserved.
> +
> +     Redistribution and use in source and binary forms, with or without
> +     modification, are permitted provided that the following conditions
> +     are met:
> +
> +     1. Redistributions of source code must retain the above copyright
> +        notice, this list of conditions and the following disclaimer.
> +     2. Redistributions in binary form must reproduce the above
> copyright
> +        notice, this list of conditions and the following disclaimer in the
> +        documentation and/or other materials provided with the
> distribution.
> +     3. Neither the name of the copyright holder nor the names of its
> +        contributors may be used to endorse or promote products
> derived from
> +        this software without specific prior written permission.
> +
> +     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
> CONTRIBUTORS "AS IS"
> +     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
> LIMITED TO, THE
> +     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
> PARTICULAR PURPOSE
> +     ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
> CONTRIBUTORS BE
> +     LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
> EXEMPLARY, OR
> +     CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
> PROCUREMENT OF
> +     SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
> OR BUSINESS
> +     INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
> LIABILITY, WHETHER IN
> +     CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
> OTHERWISE)
> +     ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
> ADVISED OF THE
> +     POSSIBILITY OF SUCH DAMAGE.
> +
> diff --git a/Config.uk b/Config.uk
> new file mode 100644
> index 0000000..ba0ec17
> --- /dev/null
> +++ b/Config.uk
> @@ -0,0 +1,4 @@
> +config LIBLUA
> +     bool "The Lua programming language"
> +     default n
> +     select LIBNOLIBC if !HAVE_LIBC
> diff --git a/MAINTAINERS.md b/MAINTAINERS.md
> new file mode 100644
> index 0000000..ec83c7b
> --- /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.
> +
> +     LIBPCRE-UNIKRAFT
> +     M:      Felipe Huici <felipe.huici@xxxxxxxxx>
> +     M:      Simon Kuenzer <simon.kuenzer@xxxxxxxxx>
> +     L:      minios-devel@xxxxxxxxxxxxx
> +     F: *
> diff --git a/README.md b/README.md
> new file mode 100644
> index 0000000..1633eb2
> --- /dev/null
> +++ b/README.md
> @@ -0,0 +1,9 @@
> +lua for Unikraft
> +=============================
> +
> +This is the port of lua for Unikraft as external library. By default,
> +when running the port will go into interactive mode. Alternatively,
> +you can run a script from a file if passed as a initrd parameter.
> +
> +Please refer to the `README.md` as well as the documentation in the
> `doc/`
> +subdirectory of the main unikraft repository.
> --
> 2.11.0
>
>
> _______________________________________________
> Minios-devel mailing list
> Minios-devel@xxxxxxxxxxxxxxxxxxxx
> https://lists.xenproject.org/mailman/listinfo/minios-devel
IMPORTANT NOTICE: The contents of this email and any attachments are 
confidential and may also be privileged. If you are not the intended recipient, 
please notify the sender immediately and do not disclose the contents to any 
other person, use it for any purpose, or store or copy the information in any 
medium. Thank you.
_______________________________________________
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®.