1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 19:23:01 +03:00
mobile-nixos/modules/adb.nix

66 lines
1.5 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
options.mobile.adbd = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
Enables adbd on the device.
'';
};
};
config = lib.mkIf config.mobile.adbd.enable {
assertions = [
{ assertion = config.mobile.system.type == "android";
message = "adb is only available on Android";
}
{ assertion = config.mobile.boot.stage-1.usb.enable;
message = "adb requires mobile.boot.stage-1.usb.enable = true";
}
];
mobile.boot.stage-1 = {
usb.features = [ "adb" ];
2020-01-13 23:22:31 +03:00
tasks = [
(pkgs.writeText "adbd-task.rb" ''
class Tasks::ADBD < SingletonTask
def initialize()
add_dependency(:Mount, "/dev/usb-ffs/adb")
Targets[:SwitchRoot].add_dependency(:Task, self)
end
def run()
System.spawn("adbd")
end
end
'')
];
extraUtils = with pkgs; [{
package = adbd;
extraCommand = ''cp -fpv "${glibc.out}"/lib/libnss_files.so.* "$out"/lib/'';
}];
};
2020-01-13 23:22:31 +03:00
boot.specialFileSystems = {
# This is required for gadgetfs configuration.
"/dev/usb-ffs/adb" = {
device = "adb";
fsType = "functionfs";
options = [ "nosuid" "noexec" "nodev" ];
};
};
boot.postBootCommands = ''
# Restart adbd early during stage-2
2019-10-28 21:11:01 +03:00
${pkgs.procps}/bin/pkill -x adbd
${pkgs.adbd}/bin/adbd &
'';
};
}