<div dir="ltr"><div>Apologies if this email is incorrectly formatted, I'm using webmail. Below is the script I used to try and get the a10 olinuxino lime to work. It was run from a debian-based machine. I could try retest, but I am [non-literally] flooded at the moment. I may retest if I get the time.<br></div><div><br></div><div>#!/bin/sh<br>if ! [ -b "$1" ]; then<br>echo "Be careful ..."<br>echo "Run as root and enter the device block as the first argument, good luck!"<br>exit 1<br>fi<br><br>##Install for creating boot.scr<br>apt-get install u-boot-tools<br><br>mkdir workingDir<br>cd workingDir<br><br>##Download the stuff<br>wget <a href="https://www.parabola.nu/packages/libre/armv7h/uboot4extlinux-a10-olinuxino-lime/download/">https://www.parabola.nu/packages/libre/armv7h/uboot4extlinux-a10-olinuxino-lime/download/</a><br>wget <a href="https://repomirror.parabola.nu/iso/systemd-cli-2018-02-06/parabola-systemd-cli-armv7h-tarball-2018-02-06.tar.gz">https://repomirror.parabola.nu/iso/systemd-cli-2018-02-06/parabola-systemd-cli-armv7h-tarball-2018-02-06.tar.gz</a><br>wget <a href="https://git.parabola.nu/abslibre.git/plain/libre/uboot-sunxi/boot.txt">https://git.parabola.nu/abslibre.git/plain/libre/uboot-sunxi/boot.txt</a><br><br>##Fresh the sdcard<br>shred "$1"<br><br>##Do the stuff<br>tar -xf uboot4extlinux*<br>#we do this in two separate steps ... create the partition table ...<br>printf "o\nw\n" | fdisk --wipe always "$1"<br>#... and create the partition<br>printf "n\np\n1\n\n\nw\n" | fdisk --wipe always "$1"<br>mkfs.ext4 "${1}1"<br>mkdir mnt<br>mount "${1}1" mnt<br>tar -xf parabola-*-armv7h-*.tar.gz -C mnt<br>cp -a boot/extlinux mnt/boot/<br>cp -a boot/u-boot mnt/boot/<br>dd if=boot/u-boot/images/u-boot-sunxi-with-spl.bin of=${1} bs=1024 seek=8<br>cp -a boot.txt mnt/boot<br>sed -i "s#console=\${console}#console=ttyS0,115200 console=tty0 hdmi.audio=EDID:0 disp.screen0_output_mode=EDID:1280x720p60#g" mnt/boot/boot.txt<br>mkimage -A arm -O linux -T script -C none -n "U-Boot boot script" -d mnt/boot/boot.txt boot.scr<br>cp -a boot.scr mnt/boot</div><div>sync</div><div>umount mnt<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Feb 10, 2020 at 3:13 AM bill-auger <bill-auger@peers.community> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">FWIW, LXDE also has a GTK3 port - either version is in the<br>
parabola repos<br>
_______________________________________________<br>
Dev mailing list<br>
<a href="mailto:Dev@lists.parabola.nu" target="_blank">Dev@lists.parabola.nu</a><br>
<a href="https://lists.parabola.nu/mailman/listinfo/dev" rel="noreferrer" target="_blank">https://lists.parabola.nu/mailman/listinfo/dev</a><br>
</blockquote></div>