summaryrefslogtreecommitdiff
path: root/package
AgeCommit message (Collapse)Author
8 daysstrace: update to 6.14Waldemar Brodkorb
8 daysirssi: update to 1.4.5, switch to openssl as defaultWaldemar Brodkorb
8 daystor: update to 0.4.8.16, switch to opensslWaldemar Brodkorb
9 daysbarebox: finetune Makefile, tested with maltaWaldemar Brodkorb
12 daysbarebox: update to 2025.03.0Waldemar Brodkorb
12 daysu-boot: update to 2025.01Waldemar Brodkorb
12 daysfix build when SSL headers are not installed on the build hostWaldemar Brodkorb
2025-03-22u-boot: add host dependencies, remove patchWaldemar Brodkorb
2025-03-21add arch dependenciesWaldemar Brodkorb
2025-03-21busybox: add patch from buildrootWaldemar Brodkorb
2025-03-21virtio: rework, add support for x86_64Waldemar Brodkorb
2025-03-21qemu-x86_64: various fixesWaldemar Brodkorb
- fix dual-boot for EFI setups - normal BIOS does not work in dual-boot - VGA and EFI does not work
2025-03-20busybox: update to 1.37.0Waldemar Brodkorb
2025-03-20wget: update to 1.25.0Waldemar Brodkorb
2025-03-18grub: update to 2.12Waldemar Brodkorb
2025-03-16expat: update to 2.7.0Waldemar Brodkorb
2025-03-16coreutils: update to 9.6Waldemar Brodkorb
2025-03-12dropear: update to 2025.87Waldemar Brodkorb
2025-03-12curl: update to 8.12.1Waldemar Brodkorb
2025-03-03add support for no Linux kernel builds, use it for arcturus-ucbf54xWaldemar Brodkorb
2025-02-24gnutls: update to 3.8.9Waldemar Brodkorb
2025-02-23gdb: update to 16.2Waldemar Brodkorb
2025-02-12openssl: update to 3.4.1Waldemar Brodkorb
2025-02-12libass needs harfbuzzWaldemar Brodkorb
2025-02-02squid: update to 6.13Waldemar Brodkorb
2025-02-02ltp: update to 20250130Waldemar Brodkorb
2025-02-02cyrus-sasl: update to 2.1.28Waldemar Brodkorb
2025-02-01openssl: update to 3.4.0Waldemar Brodkorb
2025-02-01bind: update to 9.18.33Waldemar Brodkorb
2025-01-29valgrind: update to 3.24.0Waldemar Brodkorb
2025-01-29gdb: update to 16.1Waldemar Brodkorb
2025-01-28bind: update to 9.18.32Waldemar Brodkorb
2025-01-28libuv: update to 1.50.0Waldemar Brodkorb
2025-01-27strace: update to 6.13Waldemar Brodkorb
2025-01-23asterisk: update to 20.11.1Waldemar Brodkorb
2025-01-22rsync: update to 3.4.1Waldemar Brodkorb
2025-01-09use elfutils systemwideWaldemar Brodkorb
libelf is deprecated and does not build with gcc-14. Use elfutils instead as drop-in replacement. Add patches from Buildroot to disable progs, which use glibc specific functions.
2025-01-09package: json-c: Fix for compiling with gcc-14Phil Sutter
Wrong ordering in calloc() is bad, mkay? Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-09package: cfgfs: Fix for ignored attribute warningsPhil Sutter
The 'bounded' attribute seems to never have existed. Replace it by the 'access' attribute which probably does the same. Declare decompressors' 'dst' parameter as read_write for now, no idea if any of them reads back the written output while decompressing. Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-09package: cfgfs: Fix for compiling with gcc-14Phil Sutter
The asprintf() function is not exported unless _GNU_SOURCE has been defined. Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-09package: ndisc6: Fix for compiling with gcc-14Phil Sutter
The callback declaration adjustment was flawed: While dropping 'restrict' keyword might be needed for some reason, dropping the asterisk changes parameter types. Also, 'const data' defaults to 'int' type when it should be 'void' instead. Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-09package: apcupsd: Fix for compiling with gcc-13Phil Sutter
Kudos to Fabrice Fontaine for coming up with this: https://lore.kernel.org/buildroot/20240113100654.85904-1-fontaine.fabrice@gmail.com/ Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-09package: linux-atm: Revert "fix musl compile"Phil Sutter
This reverts commit c5dc60b664fcbba2642346c4b80fc407264337b7. This change breaks when compiling using gcc-14. It is also not correct: on_exit() takes two arguments and passes the exit status to the callback as expected by trace_on_exit() here. In contrast, atexit() expects a callback which does not take any arguments and thus the logic for when to print a trace breaks when using it. Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-06package: Port minidlnaPhil Sutter
This is a more capable alternative to gmediaserver. Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-06package: Port zfs packagePhil Sutter
This still lacks some init scripts to reassemble pools and for other tasks. For now, I just do: | disks=$(blkid | sed -n 's,^/dev/\(sd[a-z]\): .* TYPE="crypto_LUKS".*,\1,p') | for disk in $disks; do | [ -b /dev/mapper/$disk ] || cryptsetup luksOpen \ | --key-file=/etc/mykeyfile /dev/$disk $disk | done | zpool import -a Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-06package: Port apcupsdPhil Sutter
For USB-connected UPSs, kernel's USB_HIDDEV option is required as the daemon communicates via /dev/usb/hiddev* raw HID devices. Therefore make USB_HID select USB_HIDDEV (shouldn't hurt much on other systems) and select the former if the package is enabled. Ship a config which defaults to USB-based UPSs as they are probably the most common ones. Also install a minimal apccontrol which merely remounts relevant filesystems read-only in case of near blackout. The core OpenADK fs layout should tolerate pulling the plug as-is already. Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-06package: Port libexifPhil Sutter
Needed by upcoming minidlna package. Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-06package: base-files: Add bonding support to network scriptsPhil Sutter
Also add a sample LACP configuration and while being at it, fix the documentation URL. Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-06package: openssl: Disable docs buildPhil Sutter
Building man pages requires pod2man tool. Avoid this extra build dependency. Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-06package: util-linux: Do not build lsfd if not neededPhil Sutter
This actually works around a problem when building against uClibc which does not seem to provide process_vm_readv syscall and thus compiling lsfd fails. Signed-off-by: Phil Sutter <phil@nwl.cc>