Results 81 comments of Elara

> This way, you explicitly write to UART0. It will work regardless of the -serial= flag. I know. That's what I am doing now. The problem was I didn't notice...

I've added the tests and comments, and fixed what the linter suggested.

> could you make the changes to the docs as well? they live in the www folder. Sure

> Implement signed packages [wiki.archlinux.org/title/DeveloperWiki:Package_signing](https://wiki.archlinux.org/title/DeveloperWiki:Package_signing) Appears to create a .sig file to live outside the package? Yeah, it requires a separate file and I don't know how to implement that...

> Just make a `doSign` method that writes the file alongside the package if the `info.ArchLinux.Signature.KeyFile` is not empty. The issue with that is that the `Package()` method of the...

I've looked at the existing acceptance tests and I understand what they do, but I have no idea where to start in terms of implementing them for Arch. Can someone...

On Arch, packages cannot write to `/usr/sbin` as it is a symlink to `/usr/bin`, and pacman does not follow the symlink and therefore refuses to write to it. This is...

Oh, I just realized I could also do this if it's better: ```yaml - src: ./testdata/fake dst: /usr/sbin/fake file_info: mode: 04755 packager: deb - src: ./testdata/fake dst: /usr/sbin/fake file_info: mode:...

I've implemented the acceptance tests. I added only `amd64` to `acceptance_test.go` for Arch because Arch only officially supports `x86_64`. This means that the official docker image only works on `amd64`....