Skip to content

Commit

Permalink
feat: add initial support for odroid-h3 hardware
Browse files Browse the repository at this point in the history
This should work for both odroid-h3 and h3+ as they both have a jasper
lake CPU (N5105 and N6005).
  • Loading branch information
yannick-mayeur authored and Mic92 committed Sep 3, 2023
1 parent 19cf623 commit 1ed1234
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ See code for all available configurations.
| [Microsoft Surface Pro 3](microsoft/surface-pro/3) | `<nixos-hardware/microsoft/surface-pro/3>` |
| [Morefine M600](morefine/m600) | `<nixos-hardware/morefine/m600>` |
| [Hardkernel Odroid HC4](hardkernel/odroid-hc4/default.nix) | `<nixos-hardware/hardkernel/odroid-hc4>` |
| [Hardkernel Odroid H3](hardkernel/odroid-h3/default.nix) | `<nixos-hardware/hardkernel/odroid-h3>` |
| [Omen en00015p](omen/en00015p) | `<nixos-hardware/omen/en00015p>` |
| [One-Netbook OneNetbook 4](onenetbook/4) | `<nixos-hardware/onenetbook/4>` |
| [Panasonic Let's Note CF-LX4 ](panasonic/letsnote/cf-lx4) | `<nixos-hardware/panasonic/letsnote/cf-lx4>` |
Expand Down
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@
msi-gl62 = import ./msi/gl62;
nxp-imx8qm-mek = import ./nxp/imx8qm-mek;
hardkernel-odroid-hc4 = import ./hardkernel/odroid-hc4;
hardkernel-odroid-h3 = import ./hardkernel/odroid-h3;
omen-en00015p = import ./omen/en00015p;
onenetbook-4 = import ./onenetbook/4;
pcengines-apu = import ./pcengines/apu;
Expand Down
7 changes: 7 additions & 0 deletions hardkernel/odroid-h3/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{ config, lib, ... }:

{
imports = [
../../common/cpu/intel/jasper-lake
];
}

0 comments on commit 1ed1234

Please sign in to comment.