Los 17 que construyen de la tanda base-system-1 pasan de recipes/incoming-clib a recipes/ canónicas y al índice firmado (dist/repo, artefacto local): bash git sudo doas util-linux rsync sed tzdata dbus dhcpcd iproute2 iputils dosfstools e2fsprogs parted vim ca-certificates. Sólo foot queda staged (stack Wayland, diferido). Cierra el grueso del hueco 'userland foundational' hacia la distro completa: shell real + VCS + privilegios + red + disco + TLS.
16 lines
381 B
Diff
16 lines
381 B
Diff
rootbld makes all the supplementary groups nobody(65534);
|
|
this patch avoids using them in tests
|
|
|
|
diff --git a/getgroups.c b/getgroups.c
|
|
index 8a37ed0..01adfca 100644
|
|
--- a/getgroups.c
|
|
+++ b/getgroups.c
|
|
@@ -48,6 +48,7 @@
|
|
#endif
|
|
|
|
for (i = 0; i < n; i++) {
|
|
+ if (list[i] == 65534) continue;
|
|
printf("%lu ", (unsigned long)list[i]);
|
|
if (list[i] == gid)
|
|
gid_in_list = 1;
|