1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-16 20:21:32 +03:00
mobile-nixos/modules/initrd-usb.nix

86 lines
2.2 KiB
Nix
Raw Normal View History

2018-07-08 03:22:39 +03:00
{ config, lib, pkgs, ... }:
with lib;
let
device_info = config.mobile.device.info;
2018-07-08 03:22:39 +03:00
cfg = config.mobile.boot.stage-1;
device_name = device_config.name;
device_config = config.mobile.device;
system_type = config.mobile.system.type;
2018-07-08 03:22:39 +03:00
in
{
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.str;
2018-07-08 03:22:39 +03:00
default = [];
description = ''
`android_usb` features to enable.
'';
};
};
options.mobile.usb = {
idVendor = mkOption {
type = types.str;
description = ''
USB vendor ID for the USB gadget.
'';
};
idProduct = mkOption {
type = types.str;
description = ''
USB product ID for the USB gadget.
'';
};
mode = mkOption {
type = types.nullOr (types.enum [ "android_usb" "gadgetfs" ]);
default = null;
description = ''
The USB gadget implementation the device uses.
'';
};
};
2018-07-08 03:22:39 +03:00
config = lib.mkIf (config.mobile.usb.mode != null && cfg.usb.enable) {
boot.specialFileSystems = {
# This is required for gadgetfs configuration.
"/sys/kernel/config" = {
# FIXME: remove once added to <nixpkgs/nixos/modules/tasks/filesystems.nix> specialFSTypes
device = "configfs";
fsType = "configfs";
options = [ "nosuid" "noexec" "nodev" ];
};
};
mobile.boot.stage-1 = lib.mkIf (cfg.usb.enable && (config.mobile.usb.mode != null)) {
kernel.modules = [
"configfs"
];
usb.features = []
++ optional cfg.networking.enable "rndis"
;
tasks = [
./stage-1/tasks/usb-gadget-task.rb
];
bootConfig = {
boot.usb.features = cfg.usb.features;
boot.usb.functions = mkIf (device_info ? gadgetfs) (builtins.listToAttrs (
builtins.map (feature: { name = feature; value = device_info.gadgetfs.functions."${feature}"; }) cfg.usb.features
));
usb = {
inherit (config.mobile.usb) idVendor idProduct mode;
};
};
};
2018-07-08 03:22:39 +03:00
};
}