aboutsummaryrefslogtreecommitdiff
path: root/package/utils/util-linux/patches/100-use_urandom.patch
Commit message (Collapse)AuthorAge
* util-linux: use meson to buildRosen Penev2022-05-15
| | | | | | | | | Compiles faster, is PIC by default, and does not have pkgconfig files with wrong paths. Add various fixes to it as it seems cross compilation was never tested. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* util-linux: Update to 2.35.1Daniel Engberg2020-02-20
| | | | | | | | Update util-linux to 2.35.1 and refresh patches. Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net> [commit subject and description tweaks] Signed-off-by: Petr Štetiar <ynezz@true.cz>
* util-linux: avoid using the getrandom syscallFelix Fietkau2017-09-29
getrandom blocks until the random pool is being initialized. Unfortunately, this code is being called early during init to create the overlay filesystem, on some devices leaving little chance for a successful random pool init. True randomness is not that important here, so fix this issue by sticking to using /dev/urandom, like in older versions of this code. Signed-off-by: Felix Fietkau <nbd@nbd.name>