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
  Cant boot into an OS trashtendenz 3 676 10-23-2024, 03:49 AM
Last Post: chaylengordon
  3 days in, slow/stuck or no boot. lgmpbp2 30 3,742 09-05-2024, 08:49 AM
Last Post: lgmpbp2
  Unable to boot? YossiS 4 392 09-04-2024, 10:35 AM
Last Post: wdt
  Audio Issues alvinsmith 1 461 08-10-2024, 01:50 AM
Last Post: sparkie
  upgrading u-boot--what version? where to get it? bsammon 11 2,617 05-22-2024, 09:33 AM
Last Post: wdt
  uboot wont boot to SD card after upgrade jbradley419 7 2,285 01-19-2024, 02:29 PM
Last Post: wdt
  Video Flashing/adjusting on boot and reboot jbradley419 0 632 01-16-2024, 09:17 AM
Last Post: jbradley419
  Brand new Pinebook Pro doesn't boot after Manjaro update johnboiles 8 3,725 12-15-2023, 02:11 PM
Last Post: wdt
  PBP won't boot after trying to reinstall Manjaro ARM soupgirl 3 1,470 12-13-2023, 08:17 PM
Last Post: trillobite
  Various freezes during boot & while running several Linux distros - hardware error? donuts 1 1,047 11-22-2023, 11:47 AM
Last Post: fxc

Forum Jump:


Users browsing this thread: 3 Guest(s)