summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/hw
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2018-01-28 13:57:55 +0100
committermakefu <github@syntax-fehler.de>2018-01-28 13:57:55 +0100
commit7d30101dd3f4b6e1191e37ea6a81c1c33fa535de (patch)
tree95d7ffe30c1c69bde0fb039737fc0af3f47d3c8a /makefu/2configs/hw
parentcc51c5f7db21749b87b0db096087b7e7447a8f0a (diff)
Revert "ma hw/stk1160: rip"
This reverts commit 1cbc2e5aa359e7e9b4b32c9ef75902576347a6d0.
Diffstat (limited to 'makefu/2configs/hw')
-rw-r--r--makefu/2configs/hw/stk1160.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/makefu/2configs/hw/stk1160.nix b/makefu/2configs/hw/stk1160.nix
new file mode 100644
index 00000000..b3a9e1a5
--- /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;
+ 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
+ '';
+ };
+ };
+}