mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 04:33:03 +01:00
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
|