Intermittent Boot Issues
#1
Greetings

My girlfriend and I both got our PBPs in last week. Out of the box I had issues with mine not booting properly.

I got the Manjaro setup process then on reboot, I got the orange to green led sequence but no back light on the screen. After a few power cycles I was able to boot into Manjaro. Every other power cycle the issue returns though. I can do a hard poweroff and power back up and it fixes the issue; though, it sometimes takes 3 or 4 power cycles to fix the issue. There seems to be no relation between power connectivity across boots as I have read in other posts on this forum. I have also tried switching ttys and trying to reboot through the serial console, as if the screen were just blanked, which was also fruitless.

I'm running the PBP as shipped from the factory; though I did allow Manjaro to do a system update once it finally booted.

My girlfriend's PBP, on the other hand, is behaving quite nicely. 

I'm not sure where to start with debugging this. It looks like a hardware issue given that its not happening on both PBPs; but, I don't want to rule out the possibility that the Manjaro setup script botched something. Does anyone have any ideas?

Thanks in advance.

[Solution]

The solution as mentioned by @khanku is that there are bugs in Manjaro's build of UBoot.

There is a uboot build in this git repo: https://github.com/mrfixit2001/updates_repo/tree/v2.0 The v2.0 branch targets PBP. There is a script in the directory pinebook/filesystem called mrfixit_update.sh. The script is smart enough to determine the target drive for writing the uboot image. I didn't want to install the kernel and other stuff, so I borrowed the script and made some redactions to fit my needs.

This may not be the best way to handle it; but, its what I did to get moving:

Code:
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
SYSPART=$(findmnt -n -o SOURCE /)
       
if echo $SYSPART | grep -qE 'p[0-9]$' ; then
  DEVID=$(echo $SYSPART | sed -e s+'p[0-9]$'+''+)
else
  DEVID=$(echo $SYSPART | sed -e s+'[0-9]$'++)
fi
       
if [ -f $DIR/idbloader.img ] ; then
  dd if=$DIR/idbloader.img of=$DEVID bs=32k seek=1 conv=fsync
fi

if [ -f $DIR/uboot.img ] ; then
  dd if=$DIR/uboot.img of=$DEVID bs=64k seek=128 conv=fsync
fi
       
if [ -f $DIR/trust.img ] ; then
  dd if=$DIR/trust.img of=$DEVID bs=64k seek=192 conv=fsync
fi

I ran these commands one at a time; but, some return value checks on dd and better placement of file existence would help automation.


Messages In This Thread
Intermittent Boot Issues - by MrRoosevelt - 06-02-2020, 12:46 AM
RE: Intermittent Boot Issues - by KiteX3 - 06-02-2020, 09:15 AM
RE: Intermittent Boot Issues - by jiyong - 06-02-2020, 12:54 PM
RE: Intermittent Boot Issues - by khanku - 06-03-2020, 02:55 AM
RE: Intermittent Boot Issues - by yurievitch - 06-03-2020, 12:01 PM
RE: Intermittent Boot Issues - by Arwen - 06-03-2020, 09:07 AM
RE: Intermittent Boot Issues - by yurievitch - 06-04-2020, 07:20 AM
RE: Intermittent Boot Issues - by MrRoosevelt - 06-04-2020, 10:35 AM
RE: Intermittent Boot Issues - by boggle - 06-11-2020, 09:15 PM
RE: Intermittent Boot Issues - by Twig - 06-03-2020, 09:08 AM
RE: Intermittent Boot Issues - by tophneal - 06-03-2020, 11:32 AM
RE: Intermittent Boot Issues - by Arwen - 06-03-2020, 12:05 PM
RE: Intermittent Boot Issues - by MrRoosevelt - 06-03-2020, 07:29 PM
RE: Intermittent Boot Issues - by charlespine - 06-03-2020, 09:35 PM
RE: Intermittent Boot Issues - by khanku - 06-04-2020, 12:56 AM
RE: Intermittent Boot Issues - by lot378 - 06-03-2020, 08:50 PM
RE: Intermittent Boot Issues - by MrRoosevelt - 06-03-2020, 09:16 PM
RE: Intermittent Boot Issues - by Arwen - 06-12-2020, 09:54 AM
RE: Intermittent Boot Issues - by KiteX3 - 06-12-2020, 11:57 AM
RE: Intermittent Boot Issues - by khanku - 06-21-2020, 06:45 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  uboot wont boot to SD card after upgrade jbradley419 7 799 01-19-2024, 02:29 PM
Last Post: wdt
  Video Flashing/adjusting on boot and reboot jbradley419 0 286 01-16-2024, 09:17 AM
Last Post: jbradley419
  Brand new Pinebook Pro doesn't boot after Manjaro update johnboiles 8 2,210 12-15-2023, 02:11 PM
Last Post: wdt
  PBP won't boot after trying to reinstall Manjaro ARM soupgirl 3 686 12-13-2023, 08:17 PM
Last Post: trillobite
  Various freezes during boot & while running several Linux distros - hardware error? donuts 1 584 11-22-2023, 11:47 AM
Last Post: fxc
  Issues with T-Mobile Home Internet? skinnyonthebebop 3 1,087 10-17-2023, 07:42 AM
Last Post: skinnyonthebebop
  Cannot boot to Kali SD card after uboot upgrade jbradley419 4 1,169 09-19-2023, 08:48 AM
Last Post: dachalife
  Does latest Tow-Boot install/work correctly for everyone? tophneal 4 1,861 08-03-2023, 03:30 PM
Last Post: tophneal
  Boot into NVME drive, no wifi, sound, buttons... PaulQ 0 795 07-13-2023, 01:50 PM
Last Post: PaulQ
  New Pinebook pro won’t boot Generaltuxenburg 4 1,923 06-14-2023, 07:20 AM
Last Post: KC9UDX

Forum Jump:


Users browsing this thread: 1 Guest(s)