mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 18:39:40 +01:00
8 lines
145 B
Bash
Executable File
8 lines
145 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if (grep -q 'tmpfs.*/var.*tmpfs' /proc/mounts)
|
|
then
|
|
test "$VERBOSE" != no && echo "Copying /var filesystem..."
|
|
cp -a /boot/var /
|
|
fi
|