deciso/dec: init, tested with DEC2750

Signed-off-by: Matt Layher <mdlayher@gmail.com>
This commit is contained in:
Matt Layher 2023-07-18 08:46:08 -04:00 committed by Jörg Thalheim
parent 20f2efe651
commit ba9650b14e
3 changed files with 5 additions and 0 deletions

View File

@ -88,6 +88,7 @@ See code for all available configurations.
| [Asus ROG Zephyrus G15 GA503](asus/zephyrus/ga503) | `<nixos-hardware/asus/zephyrus/ga503>` |
| [Asus TUF FX504GD](asus/fx504gd) | `<nixos-hardware/asus/fx504gd>` |
| [BeagleBoard PocketBeagle](beagleboard/pocketbeagle) | `<nixos-hardware/beagleboard/pocketbeagle>` |
| [Deciso DEC series](deciso/dec) | `<nixos-hardware/deciso/dec>` |
| [Dell G3 3779](dell/g3/3779) | `<nixos-hardware/dell/g3/3779>` |
| [Dell Inspiron 5509](dell/inspiron/5509) | `<nixos-hardware/dell/inspiron/5509>` |
| [Dell Inspiron 5515](dell/inspiron/5515) | `<nixos-hardware/dell/inspiron/5515>` |

3
deciso/dec/default.nix Normal file
View File

@ -0,0 +1,3 @@
{
boot.kernelParams = [ "console=ttyS0,115200n8" ];
}

View File

@ -22,6 +22,7 @@
asus-zephyrus-ga502 = import ./asus/zephyrus/ga502;
asus-zephyrus-ga503 = import ./asus/zephyrus/ga503;
beagleboard-pocketbeagle = import ./beagleboard/pocketbeagle;
deciso-dec = import ./deciso/dec;
dell-e7240 = import ./dell/e7240;
dell-g3-3779 = import ./dell/g3/3779;
dell-inspiron-5509 = import ./dell/inspiron/5509;