summaryrefslogtreecommitdiff
path: root/distrib
AgeCommit message (Collapse)Author
2019-10-17syncTheo de Raadt
2019-10-08syncTheo de Raadt
2019-10-08syncTheo de Raadt
2019-10-07Update to reflect the hardware list in arm64.htmlkmos
Requested by and ok kettenis
2019-10-03remove device_tree_address from rpi config.txtJonathan Gray
U-Boot has been built with CONFIG_OF_BOARD for a year now ok patrick@
2019-10-02syncTheo de Raadt
2019-10-01People who've upgraded repeatedly have observed /usr is getting a bitTheo de Raadt
tight. At upgrade time (just before new sets hit the disk) we can prune some potentially unused clang, gcc, and perl pieces. This seems to help. (This is an improvement on a previous strategy) discussed with sthen and tb, tested by kmos, in snaps for 2 days This strategy ins't perfect, and people should consider fresh installs once in a while, or more strict pruning especially of /usr/lib/lib*.so
2019-10-01syncTheo de Raadt
2019-09-29syncTheo de Raadt
2019-09-28syncTheo de Raadt
2019-09-26syncTheo de Raadt
2019-09-25syncTheo de Raadt
2019-09-25adjust for U-Boot RK3288 changesJonathan Gray
2019-09-25Change the offset filesystems start on disk for armv7 from 1MB to 16MB.Jonathan Gray
Matches arm64 and is required for rk3288 with TPL now U-Boot is expected to be found at sector 16384 (8MB). ok kettenis@ patrick@
2019-09-22Add code to handle future sysupgrade(8) change where the tool will beAntoine Jacoutot
responsible for creating auto_upgrade.conf. No behavior change intended. While here, add missing `-x' to usage(). tested by and ok florian@, ok deraadt@
2019-09-19reset watchdog timeout between each installation of sets (and no just ↵Sebastien Marie
between fetch&verify) ok sthen@
2019-09-15syncVisa Hankala
2019-09-14Support quoted SSIDskn
Instead of ignoring SSIDs containing whitespaces, slightly adjust the commands to take everything in between 'nwid ' and ' chan' as SSID; if it has double quotes at start *and* end, simply remove those. This enables users to select networks such as "Unitymedia WifiSpot" and "FRITZ!Box 7490" for example which are common among the quoted ones at least in germany. The only SSIDs known to break this are those containing " chan " as this substring is used as delimiter. Picking "some chan 4 me" would therefore result in _nwid being assigned '"some' (literal double quote), but that seems reasonably acceptable compared to the current behaviour. Input rpe "Yes please" stsp
2019-09-09Sync for openssl/cms.h.Joel Sing
2019-09-07syncVisa Hankala
2019-09-06disable base-gcc on armv7, sets from deraadt@; ok deraadt@ kettenis@ jca@Christian Weisgerber
2019-09-06syncTheo de Raadt
2019-09-05syncTheo de Raadt
2019-09-04syncTheo de Raadt
2019-09-03syncTheo de Raadt
2019-09-02syncTheo de Raadt
2019-09-01syncTheo de Raadt
2019-08-30syncTheo de Raadt
2019-08-30syncTheo de Raadt
2019-08-30syncTheo de Raadt
2019-08-30syncTheo de Raadt
2019-08-29syncTheo de Raadt
2019-08-28syncTheo de Raadt
2019-08-28syncTheo de Raadt
2019-08-27syncTheo de Raadt
2019-08-27syncStuart Henderson
2019-08-27disable base-gcc on i386, from daniel@, ok deraadtStuart Henderson
2019-08-26syncTheo de Raadt
2019-08-25syncTheo de Raadt
2019-08-23syncTheo de Raadt
2019-08-23syncanton
2019-08-21syncTheo de Raadt
2019-08-21Lower syspugrade timeout to 30 minuteskn
The previous mechanism used a single timeout for the entire upgrade which was kept when introducing the per-set watchdog. Half an hour now seems more sensible to safely catch the biggest sets on slow hardware, so avoid needlessly stalling (failed) upgrades for too long. OK sthen deraadt
2019-08-19syncTheo de Raadt
2019-08-16sort; OK deraadt@Ingo Schwarze
2019-08-16syncTheo de Raadt
2019-08-16syncTheo de Raadt
2019-08-14Explain how to take over syspatch builds from another machine.Theo Buehler
ok ajacoutot robert
2019-08-14Clean up clean_old():Christian Weisgerber
* Remove syspatch files from the installed system and not the ramdisk. * Directly try to remove the old files without superfluous check. * Use an extended glob to match /usr/lib/gcc-lib contents that don't belong to this OS version. * For /usr/lib/clang, set an array to the expansion of the glob, which is an alphabetically sorted list, drop the last element, and rm the rest. ok tb@
2019-08-13Reset sysupgrade watchdog upon every set installationkn
Instead of having a single timeout for the entire upgrade, start anew right before extracting each set's tarball. Do so by replacing the background job with a proper co-process that gets killed and restarted (reset), analogue to the dmesg listener in interactive mode. Prompted by and OK sthen OK deraadt