alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

commit 7b4b6d15f58b2bcf19de7c490d69255a51c261a3
parent 5b6da4a4ac4587f28f132509e968b110a3a4a689
Author: emmett1 <emmett1.2miligrams@protonmail.com>
Date:   Fri, 12 Sep 2025 07:40:46 +0800

busybox: added crontab to busybox-suidwrapper

Diffstat:
Mrepos/core/busybox/.checksum | 2+-
Mrepos/core/busybox/.files | 2+-
Mrepos/core/busybox/abuild | 2+-
Mrepos/core/busybox/busybox-suidwrapper.c | 3++-
4 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/repos/core/busybox/.checksum b/repos/core/busybox/.checksum @@ -6,7 +6,7 @@ a7c6c992ca7bed0881b4be27af3d45e10b8f9560a3ee3db6a4e0ceda65f05e30 0031-syslogd-f d7fef12ae5c778a12294be5da8ff8ffcc4a3ff3e0a5dca5885964626a47c2a0f acpid.run f62969ee1426bea40ffd603cb01aa4f6e264930ce29a0266b776f5d08253772a adduser-no-setgid.patch 179c4567a112635be6cb442fd8e3ff95dd0e718facd0666f2426d94322110a8f busybox-1.37.0.tar.bz2 -c8e25401863bfdecb4f3a5d4b68ef0507bac74dd69782ce3abdd7e49fecc4a80 busybox-suidwrapper.c +f4fb17d5b5f42b2cbdddbe2934560286f0a4e342974aa34ee5f66f54b7192605 busybox-suidwrapper.c 48b8a6cc6f4aa539de48f5c4d405a4400239215fe3dc7f30df370951e51743ca crond.run f24b5c4bbd14270de74ff44595a98c750b249c3e956fa363cad6b6a59a1f3a7f default.script 2fc84cd00bba1a27bb692fb61f7b06307bd2a618161c1f019efd5a8432b0f3c5 fsck-resolve-uuid.patch diff --git a/repos/core/busybox/.files b/repos/core/busybox/.files @@ -227,7 +227,7 @@ lrwxrwxrwx root/root usr/bin/clear -> ../../bin/busybox lrwxrwxrwx root/root usr/bin/cmp -> ../../bin/busybox lrwxrwxrwx root/root usr/bin/comm -> ../../bin/busybox lrwxrwxrwx root/root usr/bin/crc32 -> ../../bin/busybox -lrwxrwxrwx root/root usr/bin/crontab -> ../../bin/busybox +lrwxrwxrwx root/root usr/bin/crontab -> ../../bin/busybox-suidwrapper lrwxrwxrwx root/root usr/bin/cryptpw -> ../../bin/busybox lrwxrwxrwx root/root usr/bin/cut -> ../../bin/busybox lrwxrwxrwx root/root usr/bin/dc -> ../../bin/busybox diff --git a/repos/core/busybox/abuild b/repos/core/busybox/abuild @@ -1,6 +1,6 @@ name=busybox version=1.37.0 -release=4 +release=5 source="https://${name}.net/downloads/${name}-${version}.tar.bz2 0001-awk-fix-handling-of-literal-backslashes-in-replaceme.patch 0016-ping-make-ping-work-without-root-privileges.patch diff --git a/repos/core/busybox/busybox-suidwrapper.c b/repos/core/busybox/busybox-suidwrapper.c @@ -14,7 +14,8 @@ int main(int argc, char **argv) "passwd", "login", "vlock", - "wall" + "wall", + "crontab" }; const char * baseexec = basename(argv[0]);