mirror of
https://git.yoctoproject.org/poky
synced 2026-07-26 19:17:07 +00:00
3155cdeb0d
from 3.2.7 also update license info [sgw@linux.intel.com: added gmake-3.82 patch to correct location] Signed-off-by: Qing He <qing.he@intel.com> Signed-off-by: Saul Wold <sgw@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
|