mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4801 311d38ba-8fff-0310-9ca6-ca027cbcb966
14 lines
250 B
Bash
14 lines
250 B
Bash
#!/bin/sh
|
|
### BEGIN INIT INFO
|
|
# Provides: alignment
|
|
# Required-Start: mountkernfs
|
|
# Required-Stop: mountkernfs
|
|
# Default-Start: S
|
|
# Default-Stop:
|
|
### END INIT INFO
|
|
|
|
if [ -e /proc/cpu/alignment ]; then
|
|
echo "3" > /proc/cpu/alignment
|
|
fi
|
|
|