gotouchgo

Results 10 comments of gotouchgo

My hunch is the BerryBoot code doesn't know the usb device partition. It may only load .img file from microSD.

I now create a berryboot SD card and installed OS on USB SSD. I see a small 127MB fat32 partition is created on USB SSD and a copy of berryboot...

I don't know how to fix the current BerryBoot v2. Maybe with the right kernel parameters in the commandline.txt file similar to the SysLinux style it could find the image...

From the pull request https://github.com/maxnet/berryboot/pull/582, there is a "bootdev=" parameter in cmdline.txt. Maybe it can be used. I also see after BerryBoot installs OS successfully, a "datadev=GUID" is added in...

Ha, found the answer. It is about using partition UUID. So I add bootdev in the cmdline.txt line: `bootdev=UUID=70A2-8001 elevator=deadline quiet bootmenutimeout=10 ` with the UUID shown by blkid command...

If the SSD is your only USB storage device, it is usually sda1. But not guaranteed technically. A better script should get the list from lsblk and try the first...

Ok, first of all, because the boot partition sda1 is mounted, the code to partition/format the SSD has to be changed to not touch the boot partition. I guess current...

As in my last post, when set bootdev=sda1 in cmdline.txt, following test **doesn't work like you think** in the tiny busybox shell. `if [ $BOOTDEV == sd* ]; then` It...

See solution in https://github.com/maxnet/berryboot/issues/645#issuecomment-647859747.

Well, I actually hit similar SD card issue. After I installed the OS using my berryboot usb drive, the date of cmdline.txt and wpa_supplicant.conf are set to 1980/01/01, (1979/12/31 when...