xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-core/initscripts/initscripts-1.0/alignment.sh (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#!/bin/sh
2#
3# SPDX-License-Identifier: GPL-2.0-only
4#
5
6### BEGIN INIT INFO
7# Provides: alignment
8# Required-Start:    mountkernfs
9# Required-Stop:     mountkernfs
10# Default-Start:     S
11# Default-Stop:
12### END INIT INFO
13
14if [ -e /proc/cpu/alignment ]; then
15   echo "3" > /proc/cpu/alignment
16fi
17
18