Files
tqma6-yocto-mirror/sources/meta-openembedded/meta-oe/recipes-support/atop/atop/sysvinit-implement-status.patch
Siggi (OpenClaw Agent) 16accb6b24 Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved)
- Complete sources/ directory with all BitBake recipes
- Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl)
- Full traceability for Softwarefreigabeantrag
- GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4
- License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
2026-03-01 21:14:11 +00:00

35 lines
719 B
Diff

From bdd068873ed0979027c21773939bdb18046a8756 Mon Sep 17 00:00:00 2001
From: Kai Kang <kai.kang@windriver.com>
Date: Wed, 6 Feb 2019 13:58:04 +0000
Subject: [PATCH] sysvinit: Implement status
Implement the sub-command status.
Upstream-Status: Pending
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
atop.init | 3 +++
1 file changed, 3 insertions(+)
diff --git a/atop.init b/atop.init
index e6e11dc..e7b226d 100755
--- a/atop.init
+++ b/atop.init
@@ -18,6 +18,8 @@
# Check existance of binaries
[ -f /usr/bin/atop ] || exit 0
+[ -f /etc/init.d/functions ] && . /etc/init.d/functions
+
PIDFILE=/var/run/atop.pid
RETVAL=0
@@ -63,6 +65,7 @@ case "$1" in
;;
status)
+ status atop
;;
reload)