Code: Select all
root@HOME:~# blkid
/dev/mmcblk0p1: SEC_TYPE="msdos" LABEL="boot" UUID="15CD-3B79" TYPE="vfat"
/dev/mmcblk0p2: UUID="13d368bf-6dbf-4751-8ba1-88bed06bef77" TYPE="ext4"
/dev/sda1: LABEL="rootfs" UUID="cd3732a2-bd44-40f1-9947-8c89cfd05f29" TYPE="ext4"
root@HOME:~#
Code: Select all
root@HOME:~# cat /boot/cmdline.txt
dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty1 root=UUID=cd3732a2-bd44-40f1-9947-8c89cfd05f29 rootfstype=ext4 elevator=deadline rootwait rootdelay=5
root@HOME:~#
During booting the pi stopped waiting for cd3732a2-bd44-40f1-9947-8c89cfd05f29
So I assume the USB was not ready at that time?
[edit] I remembered there was an change to an fstab which would also need to be done here too.
Code: Select all
proc /proc proc defaults 0 0
/dev/sda1 / ext4 defaults,noatime 0 1
/dev/mmcblk0p1 /boot vfat defaults 0 2
#/dev/mmcblk0p2 / ext4 defaults,noatime 0 1
# a swapfile is not a swap partition, so no using swapon|off from here on, use dphys-swapfile swap[on|off] for that
I am not sure how to deal with the sda1 there.