summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-04-24 11:18:37 +0200
committermakefu <github@syntax-fehler.de>2017-04-24 11:18:37 +0200
commit96a49430c10ae6f3086b4e3fd16bf73d77bd9188 (patch)
tree3b6b54383c06768e03656f1c8a92bb27a5c6a73d
parent01e2f49b7600472f2464201c6330c1d6ea16e0e6 (diff)
m 2 hw/stk1160: init
-rw-r--r--makefu/1systems/x.nix1
-rw-r--r--makefu/2configs/hw/stk1160.nix15
2 files changed, 16 insertions, 0 deletions
diff --git a/makefu/1systems/x.nix b/makefu/1systems/x.nix
index 866aac3b..65df426e 100644
--- a/makefu/1systems/x.nix
+++ b/makefu/1systems/x.nix
@@ -61,6 +61,7 @@ with import <stockholm/lib>;
# hardware specifics are in here
../2configs/hw/tp-x230.nix
../2configs/hw/rtl8812au.nix
+ ../2configs/hw/stk1160.nix
# mount points
../2configs/fs/sda-crypto-root-home.nix
diff --git a/makefu/2configs/hw/stk1160.nix b/makefu/2configs/hw/stk1160.nix
new file mode 100644
index 00000000..b4d033d7
--- /dev/null
+++ b/makefu/2configs/hw/stk1160.nix
@@ -0,0 +1,15 @@
+{ pkgs, ... }:
+{
+ # TODO: un-pin linuxPackages somehow
+ boot.kernelPackages = builtins.trace "Warning: overriding kernel Packages with 4.9" pkgs.linuxPackages_4_9;
+ nixpkgs.config.packageOverrides = pkgs: {
+ linux_4_9 = pkgs.linux_4_9.override {
+ extraConfig = ''
+ MEDIA_ANALOG_TV_SUPPORT y
+ VIDEO_STK1160_COMMON m
+ VIDEO_STK1160_AC97 y
+ VIDEO_STK1160 m
+ '';
+ };
+ };
+}