Enrico Scholz

Results 37 comments of Enrico Scholz

I made it configurable by adding an `$RRD_LOCKING` environment variable and flags in the `updatex` api. There exists also a `--locking` cli option but only for `rrdupdate`. Defaults should not...

I am trying to implement a factory/recovery setup in parallel to normal A/B and face the same problem: ``` ## factory slot [slot.factory.0] device=/dev/disk/by-path/platform-2190000.mmc-part1 type=raw readonly=true ## system0 slots [slot.rootfs.0]...

Regarding links (`src/target` -> real-target-dir): how will this be handled when source is shared on multiple machines/users with different settings? E.g. when source is NFS mounted on machine A and...

Difference seems to be that working `bl31.img.sig.enc` images contain a ``` 00000000: 424c 3358 2d48 4452 0000 0000 0001 0000 BL3X-HDR........ 00000010: 0000 1005 0000 0000 0000 0005 0000 0000...

> Difference seems to be that working `bl31.img.sig.enc` images contain a `BL3X-HDR`... This seems to be some marker used by meson64-tools. glximg seems to check the img header during `-t...

> it is a GNU extension most relevant POSIX systems support it in the meantime: - FreeBSD https://man.freebsd.org/cgi/man.cgi?query=fopen&sektion=3&format=html - NetBSD https://man.netbsd.org/fopen.3 - Solaris https://docs.oracle.com/cd/E88353_01/html/E37843/fopen-3c.html afair there is some discussion to...

> Is it correct that systems that don't support 'e' will always ignore it? I do not know this but other multi-platform projects are setting this flag too. When you...

> The Windows documentation says that their 'n' uppercase 'N': "Specifies that the file isn't inherited by child processes"; sounds similar, but I really do not have any clue about...

Debugging in `rustic-save-some-buffers` ```diff (let ((buffers (cl-remove-if-not #'buffer-file-name (if (fboundp rustic-list-project-buffers-function) (funcall rustic-list-project-buffers-function) (buffer-list)))) (b (get-buffer (bound-and-true-p rustic-format-buffer-name)))) + (message "XXX %s %s %s" buffers b buffer-file-name) ``` shows that...

This advice has another, fundamental design problem https://github.com/brotzeit/rustic/blob/c7b58ebc7588d1837de250927089d24aa10e4fbd/rustic-rustfmt.el#L458-L465 The `(rustic-buffer-crate t)` is evaluated in the context of the active buffer but not in this of the buffer which is to...