/openbmc/qemu/ui/icons/ |
H A D | qemu.svg | 23 <stop 24 style="stop-color:#000000;stop-opacity:1;" 27 <stop 30 style="stop-color:#000000;stop-opacity:0.87843138;" /> 31 <stop 32 style="stop-color:#ffffff;stop-opacity:0.43921569;" 35 <stop 38 style="stop-color:#181818;stop-opacity:1;" /> 39 <stop 40 style="stop-color:#242424;stop-opacity:1;" [all …]
|
/openbmc/qemu/pc-bios/ |
H A D | qemu_logo.svg | 25 <stop 26 style="stop-color:#000000;stop-opacity:1;" 29 <stop 32 style="stop-color:#000000;stop-opacity:0.87843138;" /> 33 <stop 34 style="stop-color:#ffffff;stop-opacity:0.43921569;" 37 <stop 40 style="stop-color:#181818;stop-opacity:1;" /> 41 <stop 42 style="stop-color:#242424;stop-opacity:1;" [all …]
|
/openbmc/openbmc/poky/meta/recipes-core/busybox/busybox/ |
H A D | 0002-start-stop-daemon-fix-tests.patch | 4 Subject: [PATCH] start-stop-daemon: fix tests 8 - run "start-stop-daemon with both -x and -a" test only if "/bin/false" 15 testsuite/start-stop-daemon.tests | 14 +++++++++----- 18 diff --git a/testsuite/start-stop-daemon.tests b/testsuite/start-stop-daemon.tests 20 --- a/testsuite/start-stop-daemon.tests 21 +++ b/testsuite/start-stop-daemon.tests 29 testing "start-stop-daemon -x without -a" \ 30 'start-stop-daemon -S -x true 2>&1; echo $?' \ 34 testing "start-stop-daemon -x with -d on existing directory" \ 35 - 'start-stop-daemon -S -d /tmp -x true 2>&1; echo $?' \ [all …]
|
H A D | 0003-start-stop-false.patch | 1 It's known that the final start-stop-daemon test fails if /bin/false is 8 diff --git a/testsuite/start-stop-daemon.tests b/testsuite/start-stop-daemon.tests 10 --- a/testsuite/start-stop-daemon.tests 11 +++ b/testsuite/start-stop-daemon.tests 12 @@ -50,11 +50,18 @@ testing "start-stop-daemon without -x and -a" \ 18 -testing "start-stop-daemon with both -x and -a" \ 19 - 'start-stop-daemon -S -x /bin/false -a qwerty false 2>&1; echo $?' \ 26 + echo "SKIPPED: start-stop-daemon with both -x and -a (need non-busybox false)" 29 + testing "start-stop-daemon with both -x and -a" \ 30 + 'start-stop-daemon -S -x /bin/false -a qwerty false 2>&1; echo $?' \
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/valkey/valkey/ |
H A D | init-valkey-server | 6 # Required-Stop: $network 8 # Default-Stop: 0 1 6 21 start-stop-daemon --start --quiet --exec /usr/bin/valkey-server -- $ARGS 23 stop) 25 start-stop-daemon --stop --quiet --exec /usr/bin/valkey-server 29 start-stop-daemon --stop --quiet --exec /usr/bin/valkey-server 33 # efectively simulating a stop with --retry=TERM/5/KILL/5 schedule. 38 start-stop-daemon --stop --test --quiet --exec /usr/bin/valkey-server 43 start-stop-daemon --stop --test --quiet --exec /usr/bin/valkey-server 47 start-stop-daemon --stop --signal KILL --exec /usr/bin/valkey-server [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/redis/redis/ |
H A D | init-redis-server | 6 # Required-Stop: $network 8 # Default-Stop: 0 1 6 21 start-stop-daemon --start --quiet --exec /usr/bin/redis-server -- $ARGS 23 stop) 25 start-stop-daemon --stop --quiet --exec /usr/bin/redis-server 29 start-stop-daemon --stop --quiet --exec /usr/bin/redis-server 33 # efectively simulating a stop with --retry=TERM/5/KILL/5 schedule. 38 start-stop-daemon --stop --test --quiet --exec /usr/bin/redis-server 43 start-stop-daemon --stop --test --quiet --exec /usr/bin/redis-server 47 start-stop-daemon --stop --signal KILL --exec /usr/bin/redis-server [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/redis/redis-7.2.8/ |
H A D | init-redis-server | 6 # Required-Stop: $network 8 # Default-Stop: 0 1 6 21 start-stop-daemon --start --quiet --exec /usr/bin/redis-server -- $ARGS 23 stop) 25 start-stop-daemon --stop --quiet --exec /usr/bin/redis-server 29 start-stop-daemon --stop --quiet --exec /usr/bin/redis-server 33 # efectively simulating a stop with --retry=TERM/5/KILL/5 schedule. 38 start-stop-daemon --stop --test --quiet --exec /usr/bin/redis-server 43 start-stop-daemon --stop --test --quiet --exec /usr/bin/redis-server 47 start-stop-daemon --stop --signal KILL --exec /usr/bin/redis-server [all …]
|
/openbmc/u-boot/arch/arm/cpu/armv7/ |
H A D | cache_v7.c | 30 static void v7_dcache_clean_inval_range(u32 start, u32 stop, u32 line_len) in v7_dcache_clean_inval_range() argument 36 for (mva = start; mva < stop; mva = mva + line_len) { in v7_dcache_clean_inval_range() 42 static void v7_dcache_inval_range(u32 start, u32 stop, u32 line_len) in v7_dcache_inval_range() argument 46 if (!check_cache_range(start, stop)) in v7_dcache_inval_range() 49 for (mva = start; mva < stop; mva = mva + line_len) { in v7_dcache_inval_range() 55 static void v7_dcache_maint_range(u32 start, u32 stop, u32 range_op) in v7_dcache_maint_range() argument 69 v7_dcache_clean_inval_range(start, stop, line_len); in v7_dcache_maint_range() 72 v7_dcache_inval_range(start, stop, line_len); in v7_dcache_maint_range() 115 * Affects the range [start, stop - 1] 117 void invalidate_dcache_range(unsigned long start, unsigned long stop) in invalidate_dcache_range() argument [all …]
|
/openbmc/linux/tools/testing/selftests/ptrace/ |
D | get_syscall_info.c |
|
/openbmc/openbmc/poky/meta/recipes-core/sysvinit/sysvinit/ |
H A D | bootlogd.init | 5 # Required-Stop: 7 # Default-Stop: 2 3 4 5 10 # "stop-bootlogd", it will stop the daemon instead of 38 *stop-bootlog*) 42 ACTION=stop 53 start-stop-daemon --start --quiet \ 60 stop) 61 # stop may get called during bootup, so let it honor 64 start-stop-daemon --stop --quiet --exec $DAEMON 80 start-stop-daemon --stop --quiet --exec $DAEMON [all …]
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/sthttpd/sthttpd/ |
H A D | init | 6 # Required-Stop: $remote_fs $syslog 8 # Default-Stop: 0 1 6 21 start-stop-daemon --start --quiet --exec $thttpd -- -C @@CONFFILE 24 stop) 26 start-stop-daemon --stop --quiet --exec $thttpd 30 start-stop-daemon --stop --quiet --signal 1 --exec $thttpd 34 start-stop-daemon --stop --quiet --exec $thttpd -- -C @@CONFFILE 44 start-stop-daemon --start --quiet --exec $thttpd -- -C @@CONFFILE 48 echo "Usage: /etc/init.d/thttpd {start|stop|reload|restart|force-reload}"
|
/openbmc/entity-manager/docs/ |
H A D | address_size_detection_modes.md | 9 operation (with a STOP condition) and 8 subsequent 1-byte read operations with 33 write operation (WITHOUT a STOP condition ie. prohibited STOP) followed by a 38 `| Start | SlaveAddr + W | 0x00 | 0x00 | STOP PROHIBITED HERE | Start | SlaveAddr + R | data byte |… 40 `| Start | SlaveAddr + W | 0x00 | 0x01 | STOP PROHIBITED HERE | Start | SlaveAddr + R | data byte |… 41 `| Start | SlaveAddr + W | 0x00 | 0x02 | STOP PROHIBITED HERE | Start | SlaveAddr + R | data byte |… 42 `| Start | SlaveAddr + W | 0x00 | 0x03 | STOP PROHIBITED HERE | Start | SlaveAddr + R | data byte |… 43 `| Start | SlaveAddr + W | 0x00 | 0x04 | STOP PROHIBITED HERE | Start | SlaveAddr + R | data byte |… 44 `| Start | SlaveAddr + W | 0x00 | 0x05 | STOP PROHIBITED HERE | Start | SlaveAddr + R | data byte |… 45 `| Start | SlaveAddr + W | 0x00 | 0x06 | STOP PROHIBITED HERE | Start | SlaveAddr + R | data byte |… 46 `| Start | SlaveAddr + W | 0x00 | 0x07 | STOP PROHIBITED HERE | Start | SlaveAddr + R | data byte |… [all …]
|
/openbmc/openbmc/poky/meta/recipes-extended/rpcbind/rpcbind/ |
H A D | init.d | 3 # start/stop rpcbind daemon. 8 # Required-Stop: $network 10 # Default-Stop: 0 1 6 40 start-stop-daemon --start --quiet --exec /sbin/rpcbind -- "$@" 48 stop () in stop() function 55 start-stop-daemon --stop --quiet --exec /sbin/rpcbind in stop() 67 stop) 68 stop 71 stop 75 stop [all …]
|
/openbmc/openbmc-test-automation/bin/plug_ins/Stop/ |
H A D | cp_stop_check | 4 Check for stop conditions. Return code of 2 if stop conditions are found. 32 description='If the "Stop" plug-in is selected by the user, %(prog)s' 36 + ", then OBMC Boot Test will stop. The user" 38 + " command or program. %(prog)s will run this stop command. If the stop" 42 + ' STOP_COMMAND: 1) "FAIL" means that OBMC Boot Test should stop' 44 + " should stop after any boot test. If environment variable" 45 + " STOP_REST_FAIL is set, OBMC Boot Test will stop if REST commands are" 82 Stop this program with the stop check return code. 93 not, this function will stop the program by returning stop_test_rc. 148 "The caller wishes to stop test execution if %s commands are" [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/dynamic-layers/meta-python/recipes-connectivity/firewalld/files/ |
H A D | firewalld.init | 6 # Required-Stop: 8 # Default-Stop: 0 1 6 21 start-stop-daemon --start --quiet --exec $firewalld 24 stop) 26 start-stop-daemon --stop --quiet --pidfile $pidfile 31 start-stop-daemon --stop --quiet --pidfile $pidfile 34 start-stop-daemon --start --quiet --exec $firewalld 46 echo "Usage: /etc/init.d/firewalld {start|stop|restart|reload|status}" >&2
|
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc/ |
H A D | lircd.init | 15 start-stop-daemon --start --quiet --exec /usr/sbin/lircd -- --device=/dev/lirc0 18 stop) 20 start-stop-daemon --stop --quiet --exec /usr/sbin/lircd 24 start-stop-daemon --stop --quiet --signal 1 --exec /usr/sbin/lircd 28 start-stop-daemon --stop --quiet --exec /usr/sbin/lircd 31 start-stop-daemon --start --quiet --exec /usr/sbin/lircd -- --device=/dev/lirc0 35 echo "Usage: /etc/init.d/lircd {start|stop|reload|restart|force-reload}"
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/hiawatha/files/ |
H A D | hiawatha-init | 6 # Required-Stop: $syslog $network $remote_fs 8 # Default-Stop: 0 1 6 23 start-stop-daemon --start -x "$DAEMON" -- $OPTS 26 stop) 28 start-stop-daemon --stop -x "$DAEMON" 33 start-stop-daemon --stop -x "$DAEMON" 35 start-stop-daemon --start -x "$DAEMON" -- $OPTS 40 echo "Usage: $N {start|stop|restart|force-reload}" >&2
|
/openbmc/openbmc/poky/meta/recipes-extended/xinetd/xinetd/ |
H A D | xinetd.init | 3 # /etc/init.d/xinetd -- script to start and stop xinetd. 31 …start-stop-daemon --start --quiet --background --exec /usr/sbin/xinetd -- -pidfile /var/run/xinetd… 34 stop) 36 start-stop-daemon --stop --signal 3 --quiet --exec /usr/sbin/xinetd 45 start-stop-daemon --stop --signal 1 --quiet --exec /usr/sbin/xinetd 51 start-stop-daemon --stop --signal 1 --quiet --exec /usr/sbin/xinetd 55 $0 stop 59 echo "Usage: /etc/init.d/xinetd {start|stop|status|reload|force-reload|restart}"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/lvm2/files/ |
H A D | 0001-Avoid-bashisms-in-init-scripts.patch | 35 - echo $"Usage: $0 {start|stop|status}" 36 + echo "Usage: $0 {start|stop|status}" 53 - echo $"Usage: $0 {start|stop|restart|status}" 54 + echo "Usage: $0 {start|stop|restart|status}" 72 - echo $"Usage: $0 {start|stop|force-stop|restart|condrestart|try-restart|status}" 73 + echo "Usage: $0 {start|stop|force-stop|restart|condrestart|try-restart|status}" 91 - echo $"Usage: $0 {start|stop|restart|status|force-stop}" 92 + echo "Usage: $0 {start|stop|restart|status|force-stop}" 110 - echo $"Usage: $0 {start|stop|restart|status|force-stop}" 111 + echo "Usage: $0 {start|stop|restart|status|force-stop}"
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/ivytown/ |
D | uncore-io.json |
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/netperf/files/ |
H A D | init | 12 # Required-Stop: $remote_fs $local_fs $time 14 # Should-Stop: $network $named 16 # Default-Stop: 0 1 6 28 start-stop-daemon -S -x $DAEMON > /dev/null 2>&1 31 stop) 33 start-stop-daemon -K -x $DAEMON 44 # start-stop-daemon --stop --signal 1 --verbose --exec $DAEMON 52 start-stop-daemon -K -x $DAEMON 54 start-stop-daemon -S -x $DAEMON 57 echo "Usage: /etc/init.d/netperf {start|stop|restart|force-reload}"
|
/openbmc/openbmc/meta-security/dynamic-layers/meta-python/recipes-security/fail2ban/files/ |
H A D | initd | 5 # Required-Stop: $local_fs $remote_fs 7 # Should-Stop: $network $syslog iptables firehol shorewall ferm 9 # Default-Stop: 0 1 6 10 # Short-Description: Start/Stop fail2ban 11 # Description: Start/Stop fail2ban, a daemon to ban hosts that cause multiple authentication errors 50 stop() { 52 ${FAIL2BAN} stop > /dev/null 78 stop) 79 stop 85 stop [all …]
|
/openbmc/openbmc/poky/meta/recipes-extended/at/at/ |
H A D | atd.init | 13 …start-stop-daemon --start --quiet --pidfile /var/run/atd.pid --background --exec /usr/sbin/atd -- … 16 stop() { 18 start-stop-daemon --stop --quiet --pidfile /var/run/atd.pid 22 stop 30 stop) 31 stop 40 echo $"Usage: $0 {start|stop|restart|status}"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/syslog-ng/files/ |
H A D | initscript | 27 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $syslog_ng 30 stop) 32 start-stop-daemon --stop --quiet --pidfile $PIDFILE 36 start-stop-daemon --stop --quiet --signal 1 --exec $syslog_ng 40 start-stop-daemon --stop --quiet --pidfile $PIDFILE 50 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $syslog_ng 58 echo "Usage: $0 {start|stop|reload|restart|force-reload|status}"
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/monkey/files/ |
H A D | monkey.init | 12 start-stop-daemon --start -x "$DAEMON" -- $OPTS 15 stop) 17 start-stop-daemon --stop -x "$DAEMON" 22 start-stop-daemon --stop -x "$DAEMON" 24 start-stop-daemon --start -x "$DAEMON" -- $OPTS 29 echo "Usage: $N {start|stop|restart|force-reload}" >&2
|