blob: a915150213a53755fa0e6fe3c7bb99c18414d329 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# SPDX-License-Identifier: GPL-2.0-only
. /lib/upgrade/platform.sh
do_set_root_part() {
if [ "$BCM27XX_SET_ROOT_PART" -eq "1" ]; then
bcm27xx_set_root_part
unset BCM27XX_SET_ROOT_PART
fi
}
[ "$INITRAMFS" = "1" ] || boot_hook_add preinit_main do_set_root_part
|