blob: 6b9ab62df9c05addc0d8aad08886ac30fbc2e7ce [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#!/bin/sh
2
3preinit_btrfs_scan() {
4 if grep -q btrfs /proc/filesystems; then
5 btrfs device scan
6 fi
7}
8
9boot_hook_add preinit_main preinit_btrfs_scan