Gijs Peskens

Results 50 comments of Gijs Peskens

``` prefix= /usr exec_prefix=${prefix} includedir=${prefix}/include/tsduck libdir=${prefix}/lib Name: tsduck URL: https://tsduck.io Description: tsduck Version: 3.24.2109 Cflags: -I${includedir} -I${prefix}/include/PCSC Libs: -L${libdir} -ltsduck -lsrt -lcurl -lpcsclite -lpthread -lrt -ldl -lm -lstdc++ Libs.private: -Wl,-Bstatic...

run this in dir to create links: ``` #!/bin/bash WRKDIR=$(pwd) TESTDIR="$WRKDIR/testlink" if [[ -d "$TESTDIR" ]] then exit 0 fi TARGET="target_link" RELATIVE="link_relative" FULLPATH="link_fullpath" mkdir "$TESTDIR" cd "$TESTDIR" touch "$TARGET" ln...

My guess for the simplest fix would most likely be to intercept the eio_readlink output, and depending if output starts with a forward slash prepend the path of the dir...

> Thanks. I'm interested (time permitting) in working on some of the network integration (vnet + pf). [Pot](https://github.com/pizzamig/pot) already seems to manage this reasonably well, so should provide a good...

Would runj be responsible for mounting sysfs & proc or would containerd (or other higher level abstraction) have this responsibility? I'm actually guessing that's the only relevant hurdle, since most...

Yeah moby writes out a default config containing many linuxisms, they're all ignored by runj and containerd though.

It might not be related, but FreeBSD requires TIOCSCTTY to be called by the session group leader to set the controlling console, it doesn't set the tty automatically as controlling...

OK, tested it, doesn't fix the first keypress missing issue, does fix the ``` Warning: no access to tty (Bad file descriptor). Thus no job control in this shell. ```...

@davidchisnall The controlling terminal issue I fixed via 91402841220efd347f86db86d75a283447b195f7 unfortunately that was not the cause of the first keypress getting discarded :/