Ricardo Branco
Ricardo Branco
Fix for less(1) not being to operate on files residing in pseudo-filesystems that advertize a zero size value. Bug: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=276133
This will benefit dual-boot installations and also live-CD's. How I tested it: 1. Compile kernel without GEOM_LABEL 1. `cd /sys/modules/geom/geom_label` 1. `make` 1. `sudo make install` 1. Reboot 1. Attach...
Use mmap instead of malloc in bsdiff/bspatch. Debian adds a [patch](https://sources.debian.org/patches/bsdiff/4.3-23/) only to bsdiff to use mmap. Also [Chromium's fork](https://github.com/cgmb/bsdiff-chromium) uses mmap. I tested it and it works. Haven't done...
Some logs have extensions like `.log` that force the user to first download them in order to view them. It would be easier if all text logs & assets have...
Add upstream ZFS tests NOTE: This needs QEMURAM to be set to 8G. TODO: - Use -s option to specify smaller (vdev): ` -s SIZE Use vdevs of SIZE (default:...
Use LTSS 15-SP4 image https://suse.slack.com/archives/C02CGKBCGT1/p1705499141864189?thread_ts=1705495641.273059
Add support for proc/sysvipc/{msg,sem,shm} Tracking in https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278812 To build: 1. `cd /sys/modules/linprocfs` 1. `make && doas make install && doas cp -f /boot/modules/linprocfs.ko /boot/kernel/` 1. `doas kldxref /boot/kernel/` 1. `doas...
Currently, we have no way of seeing options set to md(4) devices. Also fix usage string (missing `async` option). Example: `# mdconfig -a -f /root/backup.iso -o readonly -o verify` Before:...
[BUG] Insecure permissions for configuration file holding hashed password & plaintext WiFi password
**Describe the bug** The configuration file which holds the hashed & plaintext WiFi has insecure permissions by default. **To Reproduce** on Linux: ``` $ ls -l "$HOME/.config/Raspberry Pi/Imager.conf" -rw-rw-r--. 1...
Add support for proc/sysvipc/{msg,sem,shm} Tracking in https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278812 Retry of https://github.com/freebsd/freebsd-src/pull/1218