From: Christian Goeschel Ndjomouo Date: Thu, 25 Dec 2025 04:32:43 +0000 (-0500) Subject: hwclock: mark non-standard long options to ignore in CI CHECK X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a2d95bf958be9babc7dee0b68b0d30f23a2d4b0;p=thirdparty%2Futil-linux.git hwclock: mark non-standard long options to ignore in CI CHECK Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/sys-utils/hwclock.c b/sys-utils/hwclock.c index 5af4d03eb..042b2e2c2 100644 --- a/sys-utils/hwclock.c +++ b/sys-utils/hwclock.c @@ -1321,14 +1321,14 @@ int main(int argc, char **argv) { "utc", no_argument, NULL, 'u' }, { "version", no_argument, NULL, 'V' }, { "systohc", no_argument, NULL, 'w' }, - { "debug", no_argument, NULL, 'D' }, - { "ul-debug", required_argument, NULL, 'd' }, + { "debug", no_argument, NULL, 'D' }, /* IGNORECHECK=yes */ + { "ul-debug", required_argument, NULL, 'd' }, /* IGNORECHECK=yes */ { "verbose", no_argument, NULL, 'v' }, { "set", no_argument, NULL, OPT_SET }, #if defined(__linux__) && defined(__alpha__) - { "getepoch", no_argument, NULL, OPT_GETEPOCH }, - { "setepoch", no_argument, NULL, OPT_SETEPOCH }, - { "epoch", required_argument, NULL, OPT_EPOCH }, + { "getepoch", no_argument, NULL, OPT_GETEPOCH }, /* IGNORECHECK=yes */ + { "setepoch", no_argument, NULL, OPT_SETEPOCH }, /* IGNORECHECK=yes */ + { "epoch", required_argument, NULL, OPT_EPOCH }, /* IGNORECHECK=yes */ #endif #ifdef __linux__ { "param-get", required_argument, NULL, OPT_PARAM_GET },