mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-15 19:23:01 +03:00
d71a4e8489
~ # dmesg | grep -i '\(function\|adb\)' [ 0.972168] [hall_sensor] default report function. [ 1.766641] android_usb gadget: Mass Storage Function, version: 2009/09/11 [ 11.983813] functions_store: android_usb: Cannot enable 'adb' (-22) [ 12.486886] rndis_function_bind_config: rndis_function_bind_config MAC: 00:00:00:00:00:00 That "Cannot enable 'adb'" is maddening...
72 lines
2.0 KiB
Nix
72 lines
2.0 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
with import ./initrd-order.nix;
|
|
|
|
let
|
|
cfg = config.mobile.boot.stage-1;
|
|
in
|
|
{
|
|
# FIXME Generic USB gadget support to come.
|
|
options.mobile.boot.stage-1.usb = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = ''
|
|
Enables USB features.
|
|
For now, only Android-based devices are supported.
|
|
'';
|
|
};
|
|
features = mkOption {
|
|
type = types.listOf types.string;
|
|
default = [];
|
|
description = ''
|
|
`android_usb` features to enable.
|
|
'';
|
|
};
|
|
adbd = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = ''
|
|
Enables adbd on the device.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config.mobile.boot.stage-1 = lib.mkIf cfg.usb.enable {
|
|
usb.features = []
|
|
++ optional cfg.networking.enable "rndis"
|
|
++ optional cfg.usb.adbd "adb"
|
|
;
|
|
# TODO: Only run, when we have the android usb driver
|
|
init = lib.mkOrder AFTER_DEVICE_INIT ''
|
|
# Setting up Android-specific USB.
|
|
(
|
|
SYS=/sys/class/android_usb/android0
|
|
if [ -e "$SYS" ]; then
|
|
mkdir /dev/usb-ffs/adb
|
|
mount -t functionfs adb /dev/usb-ffs/adb/
|
|
printf "%s" "0" > "$SYS/enable"
|
|
printf "%s" "18D1" > "$SYS/idVendor"
|
|
printf "%s" "D001" > "$SYS/idProduct"
|
|
printf "%s" "0" > "$SYS/bDeviceClass"
|
|
#printf "%s" "adb" > "$SYS/f_ffs/aliases"
|
|
#printf "%s" "${concatStringsSep "," cfg.usb.features}" > "$SYS/functions"
|
|
printf "%s" "rndis,adb" > "$SYS/functions"
|
|
printf "%s" "FIXME" > "$SYS/iManufacturer"
|
|
printf "%s" "FIXME" > "$SYS/iProduct"
|
|
printf "%s" "FIXME" > "$SYS/iSerial"
|
|
sleep 0.5
|
|
printf "%s" "1" > "$SYS/enable"
|
|
sleep 1
|
|
|
|
${optionalString cfg.usb.adbd "adbd &\n"}
|
|
fi
|
|
)
|
|
'';
|
|
extraUtils = with pkgs; []
|
|
++ optional cfg.usb.adbd { package = adbd; extraCommand = "cp -fpv ${glibc.out}/lib/libnss_files.so.* $out/lib"; }
|
|
;
|
|
};
|
|
}
|