Updated language to match Graham's suggestions
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
Fri, Dec 13
Sun, Dec 8
Aug 28 2023
This is a sizable change to freebsd-update that I don't believe is necessary. Closing.
Apr 24 2023
I tested this patch against CURRENT and the update wakes my generic AMD desktop at the specified time using efiwake.
Feb 28 2023
Dragonfly Mail Agent becoming the default mta makes this change moot. :)
Jan 26 2023
Jan 25 2023
Jan 11 2023
This is a very large diff because I essentially split the command line and config parsing code from the actual update functions (fetch, install, update, etc). The reason I split them is to be able to execute the commands shell script with lockf(1) to lock the working directory. I avoided making any changes to the update functions themselves other than cron. I didn't want to lock the working directory during the cron splay time so I pulled just its sleep into the parsing script.
Dec 9 2022
I tested this patch on a Lenovo T480 laptop and a generic AMD desktop running CURRENT. Both reported that they supported EFI wake time.
Dec 5 2022
Yeah, I think supporting EFI wake time could be useful to some folks. I've got a box running current I'll test with if you're able to rebase the patch.
Nov 29 2022
I was unable to test this patch. efi.h patch fails against CURRENT. D28620 abstracted the EFI public interface functions to support Xen VMs.
Nov 28 2022
@imp reviewed my code when I added a feature to top awhile back, let's see if he has time.
Nov 25 2022
Neat feature! Tested and it appears to function correctly. I just noticed a simple grammar error in man page update.
Nov 18 2022
Oct 19 2022
- dst and mask as stack variables
- simpler flag calculation
Honestly, I don't have an opinion on whether the documentation or code should be changed.
- updated from reviewer notes
Oct 18 2022
Thanks again for the reviews. The rib_walk function is indeed much better than a kernel sysctl! Not sure if Linux outputs multipath routes in proc/net/route, I'll take a look at its source.
- support metric
working version utilizing rib_walk
Oct 17 2022
Oct 13 2022
Ideally, I'd like to only malloc only the amount of memory needed for the sysctl results. This works in user sysctl by passing a NULL to oldp but the kernel_sysctl function doesn't appear to work the same way.
Updated source from dchagin comments