-
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 (#92)
- Create device-info folder containing pci device map and rugged-devices.nix for pci info of rugged 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 - Build targets are: + fmo-os-rugged-devices-debug / fmo-os-rugged-devices-release + fmo-os-rugged-devices-public-debug / fmo-os-rugged-devices-public-release + fmo-os-installer-debug / fmo-os-installer-release + fmo-os-installer-public-debug / fmo-os-installer-public-release Signed-off-by: Anh Huy Bui <[email protected]>
- Loading branch information
1 parent
85aa13e
commit 7e7ed91
Showing
16 changed files
with
155 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,35 @@ | ||
# Copyright 2022-2024 TII (SSRC) and the Ghaf contributors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# FMO PCI-device maps for rugged devices | ||
{ | ||
# 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 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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.