![]() |
An unofficial Debian Installer for Pinebook Pro - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: Pinebook Pro (https://forum.pine64.org/forumdisplay.php?fid=111) +--- Forum: Linux on Pinebook Pro (https://forum.pine64.org/forumdisplay.php?fid=114) +--- Thread: An unofficial Debian Installer for Pinebook Pro (/showthread.php?tid=8487) |
RE: An unofficial Debian Installer for Pinebook Pro - danielt - 01-04-2020 (01-04-2020, 08:14 AM)brent.thierens Wrote: You mentioned that other Debian-based images would work as well, so in order to install e.g. Ubuntu, the only thing necessary would be to edit the etc/apt/sources.list file right? I might have to rephrase that bit... Given the installer runs from an OS and installs an OS then "Ubuntu support" could mean that it runs from Ubuntu and can be used to install Debian or that it runs from Debian and can be used to install Ubuntu. In the initial port I was talking about the first of these. However it should be relatively easy to modify the installer to install Debian but it is in the "exercise for the reader" category. Basically you would have to patch install-debian to modify the debootstrap command line and get it to install Ubuntu instead of Debian (look in blog posts for clues on how to do that). The other thing needed is to rebuild the kernel as a Ubuntu package. I've just kicked off a build for that and when it finished then tweaking the apt config file for the kernel should be all that's needed to get the installer to work. I have no plans to work on this myself but I'm happy to help out (to the extent that I am can) if anyone else wants to take a crack at it. RE: An unofficial Debian Installer for Pinebook Pro - Solra Bizna - 01-04-2020 (01-03-2020, 03:17 AM)PakoSt Wrote: I have no idea if KDE or the required packages from QT are built against gles2 on Debian. I read somewhere that Panfrost implements OpenGL 2.1 in addition to GLES2. Is this not the case? RE: An unofficial Debian Installer for Pinebook Pro - siemsenit - 01-06-2020 (01-02-2020, 01:19 PM)ljones Wrote:(01-02-2020, 02:22 AM)siemsenit Wrote:(01-01-2020, 09:12 AM)ljones Wrote: First thing I would like to try to get working (but do not know how) is 2D (xorg) and 3D (GPU) acceleration. If I'm reading things right the 3d requires something called "panfrost", is that correct? But what on earth does 2D acceleration require? I think gdm 3 ist required in order to use GNOME on Wayland. As I installed just GNOME in the first place, it was enabled automatically. RE: An unofficial Debian Installer for Pinebook Pro - PakoSt - 01-06-2020 (01-04-2020, 08:20 PM)Solra Bizna Wrote:(01-03-2020, 03:17 AM)PakoSt Wrote: I have no idea if KDE or the required packages from QT are built against gles2 on Debian. In short - for Qt and Plasma you will want es2 for best performance. There is indeed OpenGL 2.1 functionality exposed in Panfrost. Not sure about the extent or if it is actively tested against. Desktop GL functionality is an extra from whatever the devs can enable. It's incredibly impressive and in some situations (games) it can be faster. But KDE isn't one of those instances. RE: An unofficial Debian Installer for Pinebook Pro - hibbelig - 01-06-2020 (12-16-2019, 06:48 PM)zaius Wrote:(12-04-2019, 03:34 AM)danielt Wrote: I've recently spent a little while hacking together a quick 'n dirty Debian installer for the Pinebook Pro.Curious, what are the advantages of this as opposed to the stock Debian build? I'm using it because it allows full disk encryption using LUKS. Also, it installs Debian Testing (aka bullseye, I guess it will be Debian 11?) instead of Debian 9 which is the stock Debian build. RE: An unofficial Debian Installer for Pinebook Pro - hibbelig - 01-06-2020 Just a quick piece of information: Daniel publishes a kernel for Debian unstable, too, so it is possible to upgrade to unstable after using the installer. The process is quite simple:
Code: deb http://deb.debian.org/debian sid main contrib non-free By "active line" I mean a line that isn't commented out, nor blank. After this, "apt update" and "apt full-upgrade" did the heavy lifting. RE: An unofficial Debian Installer for Pinebook Pro - schanzen - 01-09-2020 For those of you having trouble with displays via USB-C: The installer seems to install from an old commit of https://gitlab.manjaro.org/tsys/pinebook-firmware. You can verify that a firmware file is missing by checking dmesg. To fix the issue, clone the above repo and copy the "rockchip" folder into "/lib/firmware" of your installation (RootFS partition). Then it should work as with the official Debian 9. RE: An unofficial Debian Installer for Pinebook Pro - wasgurd - 01-10-2020 (01-09-2020, 11:56 PM)schanzen Wrote: For those of you having trouble with displays via USB-C: Well, not really: Code: $ dmesg |grep firm Code: /lib/firmware/brcm$ ls Code: /lib/firmware/rockchip$ ls RE: An unofficial Debian Installer for Pinebook Pro - danielt - 01-10-2020 Thanks @schanzen ! This might not be the problem causing trouble for @wasgurd but it is definitely something missing in the installer. Looks like I applied this by hand to my own install and forgot to go back and update the installer to match. I'll see if I can take a look at this over the weekend (although github PRs for things like this are very welcome if anyone wants to beat me to it). RE: An unofficial Debian Installer for Pinebook Pro - e-minguez - 01-10-2020 (01-10-2020, 04:48 AM)danielt Wrote: Thanks @schanzen ! https://github.com/daniel-thompson/pinebook-pro-debian-installer/pull/7 ![]() |