mirror of
https://git.yoctoproject.org/poky
synced 2026-06-10 04:00:28 +00:00
b64e3318f7
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
7 lines
115 B
Bash
7 lines
115 B
Bash
#!/bin/sh
|
|
|
|
SYSCTL_CONF="/etc/sysctl.conf"
|
|
if [ -f "${SYSCTL_CONF}" ]; then
|
|
/sbin/sysctl -q -p "${SYSCTL_CONF}"
|
|
fi
|