uboot: remove need for 'sudo' on script instructions

With the appropriate udev rules, there is no need to run
the install script as root.

Signed-off-by: Hector Palacios <hector.palacios@digi.com>
This commit is contained in:
Hector Palacios 2020-05-26 07:09:33 +02:00
parent 31fb64b494
commit c2d20ce86c
1 changed files with 4 additions and 4 deletions

View File

@ -87,13 +87,13 @@ else
echo "" echo ""
echo "1. Add U-boot file name, depending on your ConnectCore 8X variant, to script command line:" echo "1. Add U-boot file name, depending on your ConnectCore 8X variant, to script command line:"
echo " - For a QuadXPlus CPU with 1GB LPDDR4, run:" echo " - For a QuadXPlus CPU with 1GB LPDDR4, run:"
echo " => sudo ./install_linux_fs_uuu.sh imx-boot-ccimx8x-sbc-pro-1.2GHz_1GB_32bit.bin" echo " => ./install_linux_fs_uuu.sh imx-boot-ccimx8x-sbc-pro-1.2GHz_1GB_32bit.bin"
echo " - For a QuadXPlus CPU with 2GB LPDDR4, run:" echo " - For a QuadXPlus CPU with 2GB LPDDR4, run:"
echo " => sudo ./install_linux_fs_uuu.sh imx-boot-ccimx8x-sbc-pro-1.2GHz_2GB_32bit.bin" echo " => ./install_linux_fs_uuu.sh imx-boot-ccimx8x-sbc-pro-1.2GHz_2GB_32bit.bin"
echo " - For a DualX CPU with 1GB LPDDR4, run:" echo " - For a DualX CPU with 1GB LPDDR4, run:"
echo " => sudo ./install_linux_fs_uuu.sh imx-boot-ccimx8x-sbc-pro-1.2GHz_1GB_16bit.bin" echo " => ./install_linux_fs_uuu.sh imx-boot-ccimx8x-sbc-pro-1.2GHz_1GB_16bit.bin"
echo " - For a DualX CPU with 512MB LPDDR4, run:" echo " - For a DualX CPU with 512MB LPDDR4, run:"
echo " => sudo ./install_linux_fs_uuu.sh imx-boot-ccimx8x-sbc-pro-1.2GHz_512MB_16bit.bin" echo " => ./install_linux_fs_uuu.sh imx-boot-ccimx8x-sbc-pro-1.2GHz_512MB_16bit.bin"
echo "" echo ""
echo "2. Run the install script again." echo "2. Run the install script again."
echo "" echo ""