omnia: fix paths
This commit is contained in:
parent
80528376a2
commit
95d9e014fb
1 changed files with 9 additions and 10 deletions
|
@ -14,10 +14,10 @@
|
||||||
let openwrt = pkgs.openwrt; in {
|
let openwrt = pkgs.openwrt; in {
|
||||||
imports = [
|
imports = [
|
||||||
../../modules/arch/arm.nix
|
../../modules/arch/arm.nix
|
||||||
../modules/outputs/tftpboot.nix
|
../../modules/outputs/tftpboot.nix
|
||||||
../modules/outputs/mbrimage.nix
|
../../modules/outputs/ext4fs.nix
|
||||||
../modules/outputs/extlinux.nix
|
../../modules/outputs/mbrimage.nix
|
||||||
../modules/outputs/ext4fs.nix
|
../../modules/outputs/extlinux.nix
|
||||||
];
|
];
|
||||||
kernel = {
|
kernel = {
|
||||||
src = pkgs.pkgsBuildBuild.fetchurl {
|
src = pkgs.pkgsBuildBuild.fetchurl {
|
||||||
|
@ -52,12 +52,6 @@
|
||||||
# WARNING: unmet direct dependencies detected for ARCH_WANT_LIBATA_LEDS
|
# WARNING: unmet direct dependencies detected for ARCH_WANT_LIBATA_LEDS
|
||||||
ATA = "y";
|
ATA = "y";
|
||||||
|
|
||||||
|
|
||||||
# CONFIG_REGMAP=y
|
|
||||||
# CONFIG_REGMAP_I2C=y
|
|
||||||
# CONFIG_REGMAP_SPI=y
|
|
||||||
# CONFIG_REGMAP_MMIO=y
|
|
||||||
|
|
||||||
PSTORE = "y";
|
PSTORE = "y";
|
||||||
PSTORE_RAM = "y";
|
PSTORE_RAM = "y";
|
||||||
PSTORE_CONSOLE = "y";
|
PSTORE_CONSOLE = "y";
|
||||||
|
@ -172,6 +166,11 @@
|
||||||
devpath = "/devices/platform/soc/soc:internal-regs/f1034000.ethernet";
|
devpath = "/devices/platform/soc/soc:internal-regs/f1034000.ethernet";
|
||||||
ifname = "wan";
|
ifname = "wan";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lan = link.build {
|
||||||
|
ifname = "lan1";
|
||||||
|
};
|
||||||
|
|
||||||
wlan = link.build {
|
wlan = link.build {
|
||||||
ifname = "wlan0";
|
ifname = "wlan0";
|
||||||
dependencies = [ mac80211 ];
|
dependencies = [ mac80211 ];
|
||||||
|
|
Loading…
Reference in a new issue