From b2083d1b60565857adbf7f27963362e5b1afc14a Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Sun, 7 Nov 2021 14:05:31 +0530 Subject: [PATCH 1/2] Dell latitude 7490 support --- dell/latitude/7490/README.wiki | 36 ++++++++++++++++++++++++++++++++++ dell/latitude/7490/default.nix | 10 ++++++++++ 2 files changed, 46 insertions(+) create mode 100644 dell/latitude/7490/README.wiki create mode 100644 dell/latitude/7490/default.nix diff --git a/dell/latitude/7490/README.wiki b/dell/latitude/7490/README.wiki new file mode 100644 index 0000000..a436076 --- /dev/null +++ b/dell/latitude/7490/README.wiki @@ -0,0 +1,36 @@ += Dell Latitude 7490 = + +== Tested Hardware == + +``` shellsession +$ lspci -nn +00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers (rev 08) +00:02.0 VGA compatible controller: Intel Corporation UHD Graphics 620 (rev 07) +00:04.0 Signal processing controller: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem (rev 08) +00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21) +00:14.2 Signal processing controller: Intel Corporation Sunrise Point-LP Thermal subsystem (rev 21) +00:15.0 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #0 (rev 21) +00:15.1 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #1 (rev 21) +00:15.2 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #2 (rev 21) +00:15.3 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #3 (rev 21) +00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI #1 (rev 21) +00:16.3 Serial controller: Intel Corporation Sunrise Point-LP Active Management Technology - SOL (rev 21) +00:17.0 RAID bus controller: Intel Corporation 82801 Mobile SATA Controller [RAID mode] (rev 21) +00:1c.0 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #1 (rev f1) +00:1c.2 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #3 (rev f1) +00:1c.4 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #5 (rev f1) +00:1f.0 ISA bridge: Intel Corporation Sunrise Point LPC Controller/eSPI Controller (rev 21) +00:1f.2 Memory controller: Intel Corporation Sunrise Point-LP PMC (rev 21) +00:1f.3 Audio device: Intel Corporation Sunrise Point-LP HD Audio (rev 21) +00:1f.4 SMBus: Intel Corporation Sunrise Point-LP SMBus (rev 21) +00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (4) I219-LM (rev 21) +01:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader (rev 01) +02:00.0 Network controller: Intel Corporation Wireless 8265 / 8275 (rev 78) +``` + +=== Before installation === + +These settings are needed both for booting the final install, and +installer itself. Therefore, they must be done first. + +- ''Disable Secure Boot (but keep UEFI Boot).'' diff --git a/dell/latitude/7490/default.nix b/dell/latitude/7490/default.nix new file mode 100644 index 0000000..a368f44 --- /dev/null +++ b/dell/latitude/7490/default.nix @@ -0,0 +1,10 @@ +{ lib, pkgs, ... }: + +{ + imports = [ + ../../../common/cpu/intel + ../../../common/pc/laptop + ]; + + services.thermald.enable = lib.mkDefault true; +} From b50c73d420405517c9fa35fe3f565782a7562be9 Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Sun, 7 Nov 2021 14:42:36 +0530 Subject: [PATCH 2/2] Update README and flakes --- README.md | 1 + flake.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 7371a56..043ac39 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ See code for all available configurations. | [BeagleBoard PocketBeagle](beagleboard/pocketbeagle) | `` | | [Dell G3 3779](dell/g3/3779) | `` | | [Dell Latitude 3480](dell/latitude/3480) | `` | +| [Dell Latitude 7490](dell/latitude/7490) | `` | | [Dell Precision 5530](dell/precision/5530) | `` | | [Dell XPS E7240](dell/e7240) | `` | | [Dell XPS 13 7390](dell/xps/13-7390) | `` | diff --git a/flake.nix b/flake.nix index 563e422..1549a3c 100644 --- a/flake.nix +++ b/flake.nix @@ -14,6 +14,7 @@ beagleboard-pocketbeagle = import ./beagleboard/pocketbeagle; dell-g3-3779 = import ./dell/g3/3779; dell-latitude-3480 = import ./dell/latitude/3480; + dell-latitude-7490 = import ./dell/latitude/7490; dell-precision-5530 = import ./dell/precision/5530; dell-e7240 = import ./dell/e7240; dell-xps-13-7390 = import ./dell/xps/13-7390;