this is a deprecated translation tool that most things have moved away
from, and new things never use. the modern one is gettext* suite
no more revdeps in main
For MSP430 no nano.specs is installed for the MSP430 toolchain. Likely
most MSP430 users only install the nano variant and don't build a full
fledged version of newlib. To ease packaging, for consistency, and also
in case some MSP430 users do want a full fledged newlib version,
stick with providing both versions but also provide a simple nano.specs
file to make using the nano variant possible.
Additionally, syscalls where disabled for msp430. The resulted in the
functions provided by the standard C lib such as puts() or printf()
to be defunct, as the hooks integrating with an RTOS such as RIOT
where never called. This patches newlib to also use syscalls with
MSP430.
- Fix running without supervise-daemon (`pidfile` needed)
- Tell acmed to not create pidfile.
- Rename `config_file` to de-facto standard `cfgfile`.
- Add support for logging to syslog and make it default.
- Allow to easily configure logging level.
Unfortunately, appending directories to $PATH has several unintended
side-effects (see #13017). Initially, we unconditionally overwrote
PATH in /etc/profile. This was changed in f440e2db3f
due to compatibility with WSL environments (see the commit message
for details). However, according to [1] this is no longer needed
hence we should just be able to overwrite $PATH again instead of
appending to it thereby solving #13017.
This commit restores the behavior prior to
f440e2db3f.
Fixes#13017
[1]: https://gitlab.alpinelinux.org/alpine/aports/-/issues/13017#note_181429