-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisable_overlayroot.sh
executable file
·45 lines (40 loc) · 1.27 KB
/
disable_overlayroot.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
if [ "$(whoami)" != "root" ] ; then
echo "Please run as root"
echo "Quitting ..."
exit 1
fi
function disable_overlayroot_l4t_R32 {
if test -f "/etc/overlayroot.conf"; then
if ! overlayroot-chroot /bin/bash -c "echo 'overlayroot=disabled' > /etc/overlayroot.conf"; then
echo "ERR: could not run command in overlayrootfs, is it already disabled?"
else
echo "Overlay root file-system will be disabled on next boot."
fi
else
echo "/etc/overlayroot.conf not found"
fi
}
function disable_overlayfs_l4t_R36 {
# Check /usr/sbin/nv_overlayfs_config exists
if [ ! -f /usr/sbin/nv_overlayfs_config ]; then
echo "/usr/sbin/nv_overlayfs_config not found. Please try again later"
exit 1
fi
sudo /usr/sbin/nv_overlayfs_config -d
}
if [ "$(cat /etc/nv_tegra_release | grep -c '# R32 (release)')" == "1" ]; then
echo "JetPack-4.x based system detected"
disable_overlayroot_l4t_R32
elif [ "$(cat /etc/nv_tegra_release | grep -c '# R35 (release)')" == "1" ]; then
echo "JetPack-5.x based system detected"
echo "Unsupported system"
exit 1
elif [ "$(cat /etc/nv_tegra_release | grep -c '# R36 (release)')" == "1" ]; then
echo "JetPack-6.x based system detected. Using OverlayFS..."
disable_overlayfs_l4t_R36
else
echo "Incompatible JetPack version"
exit 1
fi
echo "Done."