hardware:
Raspberry Pi 3 B
32GB Sandisk USB Stick
Followed instructions here: https://www.raspberrypi.org/documentati ... des/msd.md
Followed instructions to a "T" tried it 3x times even coping and pasting the code so there were no errors..
Boots only to black screen...
Yes my vcgencmd otp_dump | grep 17
Gives back 3020000a
I don't understand why...all commands were executed no errors...
I think it could have to do with the last line about the FSTAB is incorrect...?
$ sudo sed -i "s,/dev/mmcblk0p,/dev/sda," /mnt/target/etc/fstab
could this be my problem?
shouldnt this line read "mmcblk0p2,/dev/sda2 "" not sda I'm probably wrong.... but I don't know
2 things... could also be added to the guide although I don't know where I should post it...
after connecting the fresh USB Stick to the raspberry jessie install
one needs to unmount the disk before parting it.
my example was:
$ sudo umount 9C270-00A7
from /media/pi/9C270-00A7
Otherwise you will get error disk in use Cancel/Retry:
2nd thing to add would be after parting the partition on the drive with:
sudo parted /dev/sda
(parted) mktable msdos
Warning: The existing disk label on /dev/sda will be destroyed and all data on this disk will be lost. Do you want to continue?
Yes/No? Yes
(parted) mkpart primary fat32 0% 100M
(parted) mkpart primary ext4 100M 100%
(parted) print
==================
Need to add "quit" for noobs
than continue with sudo mkfs.vfat -n BOOT -F 32 /dev/sda1
thank you for your time reading my post.