Skip to content

Commit

Permalink
debian-emmc.sh: remove unneeded sudo call
Browse files Browse the repository at this point in the history
  • Loading branch information
varigigi committed Jun 18, 2018
1 parent 07573a8 commit 947fe6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variscite/debian-emmc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ function install_bootloader
{
echo
echo "Installing bootloader to eMMC"
sudo dd if=${imagesdir}/SPL.mmc of=${node} bs=1K seek=1; sync
sudo dd if=${imagesdir}/u-boot.img.mmc of=${node} bs=1K seek=69; sync
dd if=${imagesdir}/SPL.mmc of=${node} bs=1K seek=1; sync
dd if=${imagesdir}/u-boot.img.mmc of=${node} bs=1K seek=69; sync
}
function install_kernel
Expand Down

0 comments on commit 947fe6c

Please sign in to comment.