LibreElec 512

LaFrite 512mb finally booting LibreElec:

LaFrite Mali – Google Drive


build with:

mali+ kernel 5.6.0-rc6 /zram as module included


and memory changes /parametr CMA 256>128


h264 sd ok /no deinterlacer/ change to egl solve problem

h264> ok

hevc4k> not ok / enable zram might help/ not tested

hevc1080p >not tested


lan > ok

builtin audio hdmi out > ok



for enable zram


autostart.sh put to /storage/.config/

>>>>>>>>>>>>>>>>>>>

#!/bin/bash

(

modprobe zram

swapoff -a

totalmem=`free | grep -e "^Mem:" | awk '{print $2}'`

mem=$(( $totalmem * 512))

echo $mem > /sys/block/zram0/disksize

mkswap /dev/zram0

swapon -p 100 /dev/zram0

) &

>>>>>>>>>>>>>>>>>>>

Comments

Sign In or Register to comment.