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

Re: [Minios-devel] [UNIKRAFT/LIBMICROPYTHON PATCH v3 0/6] Port of Micropython to Unikraft


  • To: "minios-devel@xxxxxxxxxxxxxxxxxxxx" <minios-devel@xxxxxxxxxxxxxxxxxxxx>
  • From: Vlad-Andrei BĂDOIU (78692) <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
  • Date: Wed, 9 Oct 2019 12:20:41 +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=K04fSAGaiMywDTZ3o49xzbinH9q9VOx5dqldiwAxG4g=; b=Kv2dAzYo+/vZQ9jZ3lAaT8feIKn3b24DCZ92qYim9x7EHMForYHHy8m25R4NeRvvBalZZ+QXRdrMkqnlCWZaXWY9S2KoMCe0IrkQpeMJWN8+sZB7lKf/U7vKKU1A5juTEU04kfKSJiJtUm/yk+JAUduEDqR8+HAYEDmOA/fHrDrUkSd1HJi0MIGaHsq+XpyuCS+d7a7hrp7I8Etq8XlIR+b1iL125ESpvxf7x0fnJ52WpTWmGjlQYLzcicV+V+japkdd6uCjzKGCemBF8EWwg4JoZIMAK14o0JTdJqWa5Sg2XAsssMrumL6JaH/H/oCusXp1DYuuaPngJ+tatKlQ9A==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=iyd7bEo/8fqqlqSxrRy6LZ+gzd1orAdAry/tR3vPcRm/3jgvZiJL+D9v7JPSJHCBObesQr4wUhcf5YqormUWwopbfw1Ap4jLreQ02H47ijRV5xX0BcOsLdNctU5NVzAlWQbpylBGtpeUFxDpz2BCCVzALGG0FqpohvsU26jxZz7856ojKsCdR4O3+vCtte6+RmBSZf2scu6cZmK8GiHNy1rfGiPeCTtt07wGq6Z/3ouePqlEXPgo6a2E6qhuPx3SQgmwtOeOyxh+gRhp/YIKDtSxdLsLAmOn0OZzk7T8KnEEtyZPYSqfWYE6tyK3vq5Qo35rQFmPiutLLZJylGxsmw==
  • Authentication-results: spf=none (sender IP is ) smtp.mailfrom=vlad_andrei.badoiu@xxxxxxxxxxxxxxx;
  • Delivery-date: Wed, 09 Oct 2019 12:20:46 +0000
  • List-id: Mini-os development list <minios-devel.lists.xenproject.org>
  • Thread-index: AQHVfnFELMSJyF0MXUSgYbjnDJL61KdSOwmA
  • Thread-topic: [Minios-devel] [UNIKRAFT/LIBMICROPYTHON PATCH v3 0/6] Port of Micropython to Unikraft

Thanks for porting micropython Felipe! It is a great addition to Unikraft.

Vlad

On 09.10.2019 10:14, Felipe Huici wrote:
> This is our initial port of Micropython (Python for embedded devices) to 
> Unikraft.
>
> Changes since v2:
> * Fixed typo that was prventing main() menu option from actually working
> * Removed exportsyms.uk
>
> Changes since v1:
> * Removed main.c from port sources, patched MP's unix/main.c instead
> * Removed modlwip.c from port sources, patched MP's extmod/modlwip.c instead
> * Added menu option to provide a main()
> * Fixed various typos
>
> *** BLURB HERE ***
>
> Felipe Huici (6):
>    Introduce library skeleton
>    Add Makefile.uk
>    Add Unikraft-adapted external modules.
>    Add patches.
>    Add header files
>    Add optional main()
>
>   CODING_STYLE.md                               |   4 +
>   CONTRIBUTING.md                               |   4 +
>   COPYING.md                                    |  39 ++
>   Config.uk                                     |  14 +
>   MAINTAINERS.md                                |  12 +
>   Makefile.uk                                   | 299 +++++++++
>   README.md                                     |  15 +
>   extmod/modusocket.c                           | 624 ++++++++++++++++++
>   glue.c                                        |  10 +
>   include/modlwip.h                             | 111 ++++
>   include/mpconfigport.h                        | 320 +++++++++
>   mpconfigport.mk                               |  45 ++
>   patches/0001-missing-board-defines.patch      |  11 +
>   patches/0002-clearup-nlrpush-frame.patch      |  10 +
>   ...compile-guard-gc-function-unix-alloc.patch |  16 +
>   patches/0004-adapt-main-c-to-unikraft.patch   |  46 ++
>   patches/0005-adapt-modlwip-to-unikraft.patch  | 242 +++++++
>   17 files changed, 1822 insertions(+)
>   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 Makefile.uk
>   create mode 100644 README.md
>   create mode 100644 extmod/modusocket.c
>   create mode 100644 glue.c
>   create mode 100644 include/modlwip.h
>   create mode 100644 include/mpconfigport.h
>   create mode 100644 mpconfigport.mk
>   create mode 100644 patches/0001-missing-board-defines.patch
>   create mode 100644 patches/0002-clearup-nlrpush-frame.patch
>   create mode 100644 patches/0003-compile-guard-gc-function-unix-alloc.patch
>   create mode 100644 patches/0004-adapt-main-c-to-unikraft.patch
>   create mode 100644 patches/0005-adapt-modlwip-to-unikraft.patch
>
_______________________________________________
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®.