This commit is contained in:
Bob Mottram 2017-05-30 17:53:59 +01:00
parent e0b4c9d5a3
commit af48fdce9d
1 changed files with 5 additions and 5 deletions

View File

@ -60,10 +60,11 @@ function a20_env {
dtb="$1"
# Setup boot.cmd
if grep -q btrfs /etc/fstab ; then
fstype=ext4
if grep -q btrfs /etc/fstab; then
fstype=btrfs
else
fstype=ext4
fi
if [ -n "$command_line" ] ; then
echo flash-kernel flash-kernel/linux_cmdline string "$command_line" | debconf-set-selections
fi
@ -119,10 +120,9 @@ function beaglebone_env {
bbb_version=$1
# Setup uEnv.txt
fstype=ext4
if grep -q btrfs /etc/fstab ; then
fstype=btrfs
else
fstype=ext4
fi
if [ ! $bbb_version ]; then
kernelVersion=$(ls /usr/lib/*/am335x-boneblack.dtb | head -1 | cut -d/ -f4)