-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FMO-81: Merge fmo-os images into fmo-os-x86_64
- Create device-info.nix for all pci devices - Create systemd service to write pci device paths into config file for microvm - Map touch device in sway via a script - Clean up tablet and laptop config file, now combined into fmo-os-x86_64 Signed-off-by: Anh Huy Bui <[email protected]>
- Loading branch information
1 parent
2274087
commit 807cd3a
Showing
15 changed files
with
146 additions
and
424 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
# Device information of Dell Rugged Tablet 7230 | ||
"0BB7 Latitude 7230 Rugged Extreme Tablet" = { | ||
touchDevices = [ | ||
"3823:49156:EETI8082:00_0EEF:C004" | ||
]; | ||
pciDevices = { | ||
netvm = [ | ||
"0000:00:14.3" | ||
]; | ||
dockervm = []; | ||
}; | ||
}; | ||
# Device information of Dell Rugged Laptop 7330 | ||
"0A9E Latitude 7330 Rugged Extreme" = { | ||
touchDevices = [ | ||
"3823:49155:CUST0000:00_0EEF:C003" | ||
]; | ||
pciDevices = { | ||
netvm = [ | ||
"0000:72:00.0" | ||
"0000:00:1f.0" | ||
"0000:00:1f.3" | ||
"0000:00:1f.4" | ||
"0000:00:1f.5" | ||
"0000:00:1f.6" | ||
]; | ||
dockervm = []; | ||
}; | ||
}; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.