!UUYziobKGGxpovWyAN:nixos.org

Robotnix

240 Members
Build Android (AOSP) using Nix | https://github.com/danielfullmer/robotnix74 Servers

Load older messages


SenderMessageTime
28 Dec 2024
@magic_rb:matrix.redalder.orgmagic_rbAh maybe the chromium is multiarch?16:55:49
@atemu12:matrix.orgatemu12Yeah that sounds like something I'd rather not do16:55:56
@magic_rb:matrix.redalder.orgmagic_rbThe prebuilt one16:56:00
@atemu12:matrix.orgatemu12No it's single arch AFAICT16:56:01
@magic_rb:matrix.redalder.orgmagic_rbHm16:56:06
@atemu12:matrix.orgatemu12and LOS must be managing somehow too16:56:07
@atemu12:matrix.orgatemu12They use the exact same chromium16:56:14
@atemu12:matrix.orgatemu12The only thing I have extra is gapps16:56:26
@magic_rb:matrix.redalder.orgmagic_rbWell those go into the system partition? Or data? Think system so there's your extra gig or so16:57:09
@atemu12:matrix.orgatemu12
FP4:/ $ df -h
Filesystem      Size Used Avail Use% Mounted on
tmpfs           3.6G 1.8M  3.6G   1% /dev
tmpfs           3.6G    0  3.6G   0% /mnt
/dev/block/dm-2 3.8G 953M  2.8G  25% /
/dev/block/dm-3 399M 339M   51M  87% /system_ext
/dev/block/dm-1 911M 341M  554M  39% /product
/dev/block/dm-4 449M 420M   20M  96% /vendor
/dev/block/dm-0  30M 1.2M   29M   5% /odm
magisk          3.6G 3.8M  3.6G   1% /debug_ramdisk
tmpfs           3.6G 8.0K  3.6G   1% /apex
/dev/block/dm-5 222G  61G  161G  28% /data
magisk          3.6G    0  3.6G   0% /system/app
/dev/fuse       222G  61G  161G  28% /storage/emulated
17:01:39
@atemu12:matrix.orgatemu12 system_ext and vendor are kinda full 17:02:14
@atemu12:matrix.orgatemu12 But I think / is system and that's clearly not full 17:04:06
@atemu12:matrix.orgatemu12currently trying to figure out what partition it actually belongs to17:04:19
@atemu12:matrix.orgatemu12 fastboot update fails on vendor but I'm not sure that's actually what makes it fail 17:20:14
@atemu12:matrix.orgatemu12And vendor doesn't contain much; certainly not the webview17:20:37
@atemu12:matrix.orgatemu12Found the culprit and added context in the PR17:40:25
@matthewcroughan:defenestrate.itmatthewcroughan - nix.zone changed their display name from matthewcroughan to matthewcroughan (DECT: 56490).19:53:33
29 Dec 2024
@izzie:transgirl.cafe@izzie:transgirl.cafe left the room.21:36:37
30 Dec 2024
@raitobezarius:matrix.orgraitobezarius changed their display name from raitobezarius (DECT: 3538 / EPVPN 2681) to raitobezarius.16:26:30
@matthewcroughan:defenestrate.itmatthewcroughan - nix.zone changed their display name from matthewcroughan (DECT: 56490) to matthewcroughan.17:36:45
31 Dec 2024
@tilpner:tx0.cotilpner changed their display name from tilpner (38c3 3209) to tilpner.10:54:55
@atemu12:matrix.orgatemu12Welp16:08:08
@atemu12:matrix.orgatemu12https://lineageos.org/Changelog-29/16:08:09
@atemu12:matrix.orgatemu12But that's something for next year ^^'16:08:31
@oak:universumi.fioak 🏳️‍🌈♥️Was just going to post this :)16:16:19
@kranzes:matrix.orgkranzeswow, their new music app supports jellyfin? that's sick17:37:07
@kranzes:matrix.orgkranzesI know of finamp which is good, but it's cool we have no options now17:37:27
1 Jan 2025
@iooioio:matrix.org@iooioio:matrix.org left the room.10:35:14
@mjolnir:nixos.orgmjolnirchanged room power levels.14:26:28
2 Jan 2025
@countoren:matrix.orgcountoren

I was able to run an image without signing trying to sign now getting:

$ nix build --impure
warning: Git tree '/home/orozen/nixpkgs' is dirty
error: builder for '/nix/store/1nqvy0hbxc1s29z5p7l8m7l6kfb7q9j8-instantnoodlep-signed_target_files-2024112323.zip.drv' failed with exit code 1;
       last 1 log lines:
       > Missing KEYSDIR directory, did you use "--option extra-sandbox-paths /keys=..." ?
       For full logs, run 'nix log /nix/store/1nqvy0hbxc1s29z5p7l8m7l6kfb7q9j8-instantnoodlep-signed_target_files-2024112323.zip.drv'.
error: 1 dependencies of derivation '/nix/store/p49s6lqkmwnvs2b7q806byw8indjphnv-instantnoodlep-img-2024112323.zip.drv' failed to build

having this flake:

{
  description = "Robotnix configuration for OnePlus 8 Pro";

  inputs.robotnix.url = "github:nix-community/robotnix/430b818f5e0a94aba9371bebdcc489f636c5e161";

  outputs = { self, robotnix }: {
    robotnixConfigurations."oneplus8pro" = robotnix.lib.robotnixSystem ({ config, pkgs, ... }: {
      # Required options
      device = "instantnoodlep";  # Codename for OnePlus 8 Pro
      flavor = "lineageos";  # Change this to 'lineageos' if you want LineageOS, otherwise keep 'grapheneos' if supported
      androidVersion = 13;

      variant = "user";
      buildDateTime = 1732404420;
      # Optional configurations
      # buildDateTime = 1584398664; # Update if you want to push OTA updates for your custom changes

      # If you have keys for signing, enable this
      signing.enable = true;
      signing.keyStorePath = "/home/orozen/nixpkgs/phone/keys";
      # Enable ccache if you want faster subsequent builds
 
      apps.fdroid.enable = true;
      microg.enable = true;

      # ccache.enable = true;

      webview.chromium.enable = false;
      webview.prebuilt.enable = false;
      apps.chromium.enable = false;
    });

    # Default package for building the image
    defaultPackage.x86_64-linux = self.robotnixConfigurations."oneplus8pro".img;
  };
}

I assume you guys seen this before, I noticed this issue :
https://github.com/nix-community/robotnix/issues/204
but I didn't figure out the solution yet.

14:37:51

Show newer messages


Back to Room ListRoom Version: 6