Re: [9fans] Venti on OpenBSD - some information and a question

2020-05-04 Thread Ole-Hjalmar Kristensen
Thanks, I found the problem by inspection of src/lib9/_p9dialparse.c. IPv6 is indeed the default when using an address of tcp!*!17034 /* translate host */ if(strcmp(host, "*") == 0){ ss->ss_family = AF_INET6; ((struct sockaddr_in6*)ss)->sin6_addr = in6addr_any; }else if((he = gethostbyname(host))

Re: [9fans] 9front kernel panic on bootstrap on rpi

2020-05-04 Thread Daniel Morandini via 9fans
Hi ori, I tried to run 9front from a live usb on my macbook, but I did not manage to make one working (I tried different approaches, with no success though. I see the EFI boot option, but the boot process does not start). Nevertheless, I tested 9front using virtualbox. The mouse works there like

Re: [9fans] Venti on OpenBSD - some information and a question

2020-05-04 Thread ori
> I can connect to the venti from localhost, but not from any other machine. > However, if I run nc -l on ports 17034 and 80, I can connect from any > machine. It is definitely not the packet filter, since the problem persists > even if I disable the packet filter. Any suggestions about what might

[9fans] Venti on OpenBSD - some information and a question

2020-05-04 Thread Ole-Hjalmar Kristensen
I am in the process of moving a venti from Linux to OpenBSD. First, unless int _p9dir(struct stat *lst, struct stat *st, char *name, Dir *d, char **str, char *estr) is patched, it will always return size 0 for raw partitions. We need to allow character devices as well, not just block devices: diff