Plymouth boot splash on Edge

Hi @recre8,

Following your instruction on how to enable Plymouth on Edge-V, I broke it into two parts for clarification:
-------------------------------------------------------------------------------------
EDIT 1
-------------------------------------------------------------------------------------
on fenix edit
~/fenix/config/bootscripts/rk3399_autoscript.cmd
Search for line containing setenv condev
and console=FIQ0
Remove: console=tty1
Add: splash quiet plymouth.ignore-serial-consoles vt.handoff=7

-------------------------------------------------------------------------------------
EDIT 2
-------------------------------------------------------------------------------------
Also edit ~fenix/config/functions/build-board-deb and comment the following at the end of the file to keep the built files
# rm -rf ${pkgdir}.deb
# rm -rf $pkgdir
make board-deb
cd ~/fenix/build/images/.tmp/linux-board-package-bionic-edge_0.7_arm64/boot
copy and replace boot.scr to /boot on the target Khadas
-------------------------------------------------------------------------------------

In “EDIT 1”, the console=tty1 is not available. Instead, it’s been replaced by console=tty0:

setenv condev "earlyprintk console=ttyFIQ0,1500000n8 console=tty0"

So, I replaced console=tty0 to get:

setenv condev "earlyprintk console=ttyFIQ0,1500000n8 splash quiet plymouth.ignore-serial-consoles vt.handoff=7"

“EDIT 2” seem to be necessary if you already have a working Ubuntu without Plymouth installed on your Edge board. If my assessment is correct, I can as well skip this phase since I’m just building Ubuntu with Fenix and haven’t installed it yet, right?