Re: [osv-dev] Capstan

2019-03-25 Thread Waldek Kozaczuk
Dor, This is actually exactly what I was pondering as well. I am adding Miha (main contributor to Mikelangelo capstan) and Greger (both from XLab) to see what the think about merging back https://github.com/mikelangelo-project/capstan to https://github.com/cloudius-systems/capstan. Doing that

[osv-dev] [PATCH V2] Changed loader to print total boot time by default

2019-03-25 Thread Waldemar Kozaczuk
Signed-off-by: Waldemar Kozaczuk --- core/chart.cc | 7 +++ include/osv/boot.hh | 1 + loader.cc | 3 +++ 3 files changed, 11 insertions(+) diff --git a/core/chart.cc b/core/chart.cc index 59311a93..c3355907 100644 --- a/core/chart.cc +++ b/core/chart.cc @@ -45,3 +45,10 @@

Re: [osv-dev] Updating http://osv.io/

2019-03-25 Thread Waldek Kozaczuk
Thanks Dor. >From the cursory look the repo for main site - https://github.com/osv-io/osv-io.github.io - seems to correspond to what is on http://osv.io - just by looking at the date of the last commit - Nov, 2015. On other hand the blog seems to be old based on the fact that last commit is

Re: [osv-dev] Re: AWS EC2 ARM instance support?

2019-03-25 Thread Rick Payne
Interesting on the Pi front. I have a couple spare so I can play with (just not with me this week). I'd suggest opening an issue on running on AWS arm64 instances, separetely to the Pi one, for sure. Perhaps a second one for the ENA driver as that would be useful for both arm64 and x86 on AWS.

Re: [osv-dev] Re: AWS EC2 ARM instance support?

2019-03-25 Thread Waldek Kozaczuk
I wonder if we should create a dedicated issue to track it. There is an existing one - https://github.com/cloudius-systems/osv/issues/717 - which seems very related. BTW per this issue somebody reported being able to (almost) boot OSv on Raspberry Pi! There is also another issue tracking new

Re: [osv-dev] Re: AWS EC2 ARM instance support?

2019-03-25 Thread Rick Payne
On Mon, 2019-03-25 at 20:19 +0100, Rick Payne wrote: > > The amazon A1 instances has these devices. I guess we need ENA > support > for Amazon's new hypervisors anyway... (SR-IOV). Another thing we'd need to do - the A1 instances use a GICv3, whereas OSv supports GICv2. Whether we can just

Re: [osv-dev] Re: AWS EC2 ARM instance support?

2019-03-25 Thread Rick Payne
On Mon, 2019-03-25 at 12:05 +0100, Rick Payne wrote: > Also once I get my console working, we hit the DTB issue as we're not > specifying a device tree, which will be the next issue to work on. I built the dtb for the amazon instance (alpine), and get a bit further. Feels like the wrong thing to

Re: [osv-dev] Updating http://osv.io/

2019-03-25 Thread Dor Laor
Waldek, I added you as maintainer to osv-io too On Mon, Mar 25, 2019 at 1:50 AM Pekka Enberg wrote: > > > On Mon, Mar 25, 2019 at 10:37 AM Nadav Har'El wrote: > >> >> On Mon, Mar 25, 2019 at 8:38 AM Tzach Livyatan >> wrote: >> >>> >>> On Mon, Mar 25, 2019 at 8:17 AM Dor Laor wrote: >>>

[osv-dev] Re: Problems to pass arguments to a JAR in run.yaml

2019-03-25 Thread robertob
Now the probem is how to run the Rest server to get the logs inside the image... All the documentation tell me to include "osv.httpserver-api". I have exposed the port 8000 trough the option "-f" for the capstan run, but the port does not answer. This is my cmdline to run the image: "

[osv-dev] [PATCH] Changed loader to print total boot time by default

2019-03-25 Thread Waldemar Kozaczuk
--- core/chart.cc | 7 +++ include/osv/boot.hh | 1 + loader.cc | 3 +++ 3 files changed, 11 insertions(+) diff --git a/core/chart.cc b/core/chart.cc index 59311a93..c3355907 100644 --- a/core/chart.cc +++ b/core/chart.cc @@ -45,3 +45,10 @@ void boot_time_chart::print_chart()

[osv-dev] [COMMIT osv master] Refactor and enhance firecracker script

2019-03-25 Thread Commit Bot
From: Waldemar Kozaczuk Committer: Waldemar Kozaczuk Branch: master Refactor and enhance firecracker script This patch: - refactors firecracker.py to better handle error scenarios - adds ability to use external networking bridge through -b parameter (see scripts/setup-external-bridge.sh) -

[osv-dev] [COMMIT osv master] Add script to setup external bridge

2019-03-25 Thread Commit Bot
From: Waldemar Kozaczuk Committer: Waldemar Kozaczuk Branch: master Add script to setup external bridge This script can be used to setup an external bridge and add physical NIC to it so that one can expose OSv IP on LAN. This script would normally be executed before scripts/run.py or

Re: [osv-dev] Re: AWS EC2 ARM instance support?

2019-03-25 Thread Rick Payne
On Sun, 2019-03-24 at 18:39 +0100, Rick Payne wrote: > On Sun, 2019-03-24 at 18:08 +0200, Nadav Har'El wrote: > > > > $ qemu-system-aarch64 --version > > QEMU emulator version 3.0.0 (qemu-3.0.0-3.fc29) > > Hmm, I'm on: > > QEMU emulator version 2.11.1(Debian 1:2.11+dfsg-1ubuntu7.10) So the

Re: [osv-dev] Updating http://osv.io/

2019-03-25 Thread Pekka Enberg
On Mon, Mar 25, 2019 at 10:37 AM Nadav Har'El wrote: > > On Mon, Mar 25, 2019 at 8:38 AM Tzach Livyatan wrote: > >> >> On Mon, Mar 25, 2019 at 8:17 AM Dor Laor wrote: >> >>> Waldek, I added you to the blog as admin, a Firecracked blog will be >>> awesome. >>> I failed to locate the main site

Re: [osv-dev] Updating http://osv.io/

2019-03-25 Thread Nadav Har'El
On Mon, Mar 25, 2019 at 8:38 AM Tzach Livyatan wrote: > > On Mon, Mar 25, 2019 at 8:17 AM Dor Laor wrote: > >> Waldek, I added you to the blog as admin, a Firecracked blog will be >> awesome. >> I failed to locate the main site itself, Tzach, Pekka, do you remember? >> > > This is the repo for

[osv-dev] Re: Problems to pass arguments to a JAR in run.yaml

2019-03-25 Thread robertob
Yes, now it works. I read your other messages about how it is frustrating to access the documentation on OSV and I confirm. In general is not easy to understand how to do things and what are the differences with various version of the software. I thank you for your amazing help roberto Il

Re: [osv-dev] Updating http://osv.io/

2019-03-25 Thread Tzach Livyatan
On Mon, Mar 25, 2019 at 8:17 AM Dor Laor wrote: > Waldek, I added you to the blog as admin, a Firecracked blog will be > awesome. > I failed to locate the main site itself, Tzach, Pekka, do you remember? > This is the repo for the site https://github.com/cloudius-systems/osv > > On Sun, Mar

Re: [osv-dev] Capstan

2019-03-25 Thread Dor Laor
IMHO the original Capstan git is the best but you're most welcome to host it in yours too On Sun, Mar 24, 2019 at 6:58 AM Waldek Kozaczuk wrote: > Now that we have new updated message in the old capstan repo - > https://github.com/cloudius-systems/capstan (thanks Pekka) - we are all > good :-)

Re: [osv-dev] Updating http://osv.io/

2019-03-25 Thread Dor Laor
Waldek, I added you to the blog as admin, a Firecracked blog will be awesome. I failed to locate the main site itself, Tzach, Pekka, do you remember? On Sun, Mar 24, 2019 at 6:13 AM Waldek Kozaczuk wrote: > Hi, > > I meant to send an email about it for a long time ;-) Anyway I wanted to > point