commit
ef31914684
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -7,7 +7,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: cachix/install-nix-action@v14
|
- uses: cachix/install-nix-action@v15
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
nix_path: nixpkgs=channel:nixos-unstable
|
||||||
- name: Show nixpkgs version
|
- name: Show nixpkgs version
|
||||||
|
|
|
@ -80,6 +80,7 @@ See code for all available configurations.
|
||||||
| [Dell G3 3779](dell/g3/3779) | `<nixos-hardware/dell/g3/3779>` |
|
| [Dell G3 3779](dell/g3/3779) | `<nixos-hardware/dell/g3/3779>` |
|
||||||
| [Dell Latitude 3480](dell/latitude/3480) | `<nixos-hardware/dell/latitude/3480>` |
|
| [Dell Latitude 3480](dell/latitude/3480) | `<nixos-hardware/dell/latitude/3480>` |
|
||||||
| [Dell Latitude 7490](dell/latitude/7490) | `<nixos-hardware/dell/latitude/7490>` |
|
| [Dell Latitude 7490](dell/latitude/7490) | `<nixos-hardware/dell/latitude/7490>` |
|
||||||
|
| [Dell Poweredge R7515](dell/poweredge/r7515) | `<nixos-hardware/dell/poweredge/r7515>` |
|
||||||
| [Dell Precision 5530](dell/precision/5530) | `<nixos-hardware/dell/precision/5530>` |
|
| [Dell Precision 5530](dell/precision/5530) | `<nixos-hardware/dell/precision/5530>` |
|
||||||
| [Dell XPS E7240](dell/e7240) | `<nixos-hardware/dell/e7240>` |
|
| [Dell XPS E7240](dell/e7240) | `<nixos-hardware/dell/e7240>` |
|
||||||
| [Dell XPS 13 7390](dell/xps/13-7390) | `<nixos-hardware/dell/xps/13-7390>` |
|
| [Dell XPS 13 7390](dell/xps/13-7390) | `<nixos-hardware/dell/xps/13-7390>` |
|
||||||
|
|
15
dell/poweredge/README.md
Normal file
15
dell/poweredge/README.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[Dell Poweredge R7515](https://www.dell.com/en-us/work/shop/productdetailstxn/poweredge-r7515#techspecs_section)
|
||||||
|
|
||||||
|
## Install bios update via UEFI
|
||||||
|
|
||||||
|
UEFI updates cannot be updated via the iDrac since it only supports BIOS
|
||||||
|
firmware files. If you use systemd boot you can however download the EFI
|
||||||
|
firmware file and put it in `/boot/EFI/Dell/bios-update.efi`.
|
||||||
|
|
||||||
|
Also write the following efi boot entry file as
|
||||||
|
`/boot/loader/entries/z-efi-update.conf`:
|
||||||
|
|
||||||
|
```
|
||||||
|
title EFI update
|
||||||
|
efi /efi/Dell/bios-update.efi
|
||||||
|
```
|
6
dell/poweredge/r7515/default.nix
Normal file
6
dell/poweredge/r7515/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
../../../common/cpu/amd
|
||||||
|
];
|
||||||
|
}
|
|
@ -16,6 +16,7 @@
|
||||||
dell-latitude-3480 = import ./dell/latitude/3480;
|
dell-latitude-3480 = import ./dell/latitude/3480;
|
||||||
dell-latitude-7490 = import ./dell/latitude/7490;
|
dell-latitude-7490 = import ./dell/latitude/7490;
|
||||||
dell-precision-5530 = import ./dell/precision/5530;
|
dell-precision-5530 = import ./dell/precision/5530;
|
||||||
|
dell-poweredge-r7515 = import ./dell/poweredge/r7515;
|
||||||
dell-e7240 = import ./dell/e7240;
|
dell-e7240 = import ./dell/e7240;
|
||||||
dell-xps-13-7390 = import ./dell/xps/13-7390;
|
dell-xps-13-7390 = import ./dell/xps/13-7390;
|
||||||
dell-xps-13-9310 = import ./dell/xps/13-9310;
|
dell-xps-13-9310 = import ./dell/xps/13-9310;
|
||||||
|
|
Loading…
Reference in a new issue