| 16 Jan 2025 |
| j4m3s set their display name to j4m3s. | 10:27:50 |
| waltmck joined the room. | 13:16:15 |
waltmck | Hey, this is an awesome project and I'm looking at using it to work around some of the limitations of android. Has anyone had success generating an image that runs zerotier as root? I know this is possible to set up with magisk but I want to have to avoid setting it up again after each update | 13:45:30 |
atemu12 | Generally, whatever you can bake into AOSP using the build process can be used in Robotnix too. | 17:25:36 |
atemu12 | You'd have to create a Makefile that installs the binary and daemon definition | 17:26:34 |
atemu12 | I know it's possible to do this but don't ask me how | 17:27:00 |
atemu12 | Perhaps look at how other daemons in AOSP are defined | 17:27:23 |
atemu12 | Basically none of this has to do with robotnix though; we "just" run the same build process inside a nix drv | 17:28:29 |
atemu12 | Robotnix would help you add that modification (once you built it) into the build process though | 17:29:59 |
| 17 Jan 2025 |
waltmck | I'm trying to get a minimum build working with graphene using the example flake, but it fails with
trying https://github.com/GrapheneOS/Vanadium/archive/SP2A.220405.003.2022041600.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0^M 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- >
^M 0 14 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (22) The requested URL returned error: 404
error: cannot download source from any mirror
| 23:01:47 |
waltmck | Is there a way to override the dependency on the source which no longer exists? | 23:02:44 |
waltmck | What is a minimal config that is known to actually build? I've been trying several flavors and device targets but they all fail for one reason or another | 23:46:27 |
| 18 Jan 2025 |
atemu12 | LineageOS is the only "supported" one | 10:14:12 |
atemu12 | Version 13, 14 or 15 | 10:14:29 |
| 19 Jan 2025 |
waltmck | ah I think I found the problem, the example config didn't set androidVersion which defaults to 12 | 22:39:34 |
waltmck | I will try it with androidVersion=15 | 22:39:45 |
atemu12 | Oh yeah we should up that probably | 22:39:54 |
waltmck | Where can I find the supported devices for lineageos? I tried to build for lynx (which as far as I can tell is supported upstream):
device = "lynx";
flavor = "lineageos";
androidVersion = 15;
but this config fails with error: Cannot locate config makefile for product "lineage_lynx"
| 23:10:06 |
atemu12 | https://github.com/nix-community/robotnix/blob/master/flavors/lineageos/supported_devices.toml | 23:10:31 |
atemu12 | You need to add yours, hope that it follows a convention we can follow and run the device dir updater | 23:11:04 |
atemu12 | A better device dir updater is currently in the works, maybe we'll have something to publish next week ;) | 23:12:06 |
| 21 Jan 2025 |
| oak 🏳️🌈♥️ changed their profile picture. | 22:36:01 |
| oak 🏳️🌈♥️ changed their profile picture. | 22:37:29 |
| 22 Jan 2025 |
waltmck | The following config still fails to build:
device = "cheeseburger";
flavor = "lineageos";
androidVersion = 15;
| 02:59:15 |
waltmck | build logs
| 03:10:06 |
atemu12 | Without having looked at the logs because I'm on the phone, are you running OOM? | 03:16:31 |
atemu12 | Cheeseburger builds fine for me | 03:16:45 |
atemu12 | You need like 3-4GiB per thread at peak | 03:17:13 |
atemu12 | Your memory config needs to be able to handle that. | 03:17:42 |
waltmck | I was using 48 threads and my desktop has 192gb of memory. I'll try fewer threads though | 03:33:48 |