forked from DGNum/liminix
move OF and USE_OF to arch modules
This commit is contained in:
parent
f57997c605
commit
76f03ecf0f
5 changed files with 6 additions and 6 deletions
|
@ -156,8 +156,6 @@
|
||||||
${openwrt.applyPatches.ath79}
|
${openwrt.applyPatches.ath79}
|
||||||
'';
|
'';
|
||||||
config = {
|
config = {
|
||||||
OF = "y";
|
|
||||||
USE_OF = "y";
|
|
||||||
ATH79 = "y";
|
ATH79 = "y";
|
||||||
PCI = "y";
|
PCI = "y";
|
||||||
PCI_AR724X = "y";
|
PCI_AR724X = "y";
|
||||||
|
|
|
@ -145,8 +145,6 @@
|
||||||
${openwrt.applyPatches.ramips}
|
${openwrt.applyPatches.ramips}
|
||||||
'';
|
'';
|
||||||
config = {
|
config = {
|
||||||
OF = "y";
|
|
||||||
USE_OF = "y";
|
|
||||||
|
|
||||||
RALINK = "y";
|
RALINK = "y";
|
||||||
PCI = "y";
|
PCI = "y";
|
||||||
|
|
|
@ -117,8 +117,6 @@
|
||||||
${openwrt.applyPatches.ramips}
|
${openwrt.applyPatches.ramips}
|
||||||
'';
|
'';
|
||||||
config = {
|
config = {
|
||||||
OF = "y";
|
|
||||||
USE_OF = "y";
|
|
||||||
|
|
||||||
RALINK = "y";
|
RALINK = "y";
|
||||||
PCI = "y";
|
PCI = "y";
|
||||||
|
|
|
@ -8,6 +8,9 @@
|
||||||
# on CMDLINE being set to something non-empty
|
# on CMDLINE being set to something non-empty
|
||||||
CMDLINE="\"console=ttyAMA0\"";
|
CMDLINE="\"console=ttyAMA0\"";
|
||||||
CMDLINE_FROM_BOOTLOADER = "y";
|
CMDLINE_FROM_BOOTLOADER = "y";
|
||||||
|
|
||||||
|
OF = "y";
|
||||||
|
USE_OF = "y";
|
||||||
};
|
};
|
||||||
boot.commandLine = [
|
boot.commandLine = [
|
||||||
"console=ttyAMA0,38400"
|
"console=ttyAMA0,38400"
|
||||||
|
|
|
@ -6,6 +6,9 @@
|
||||||
MIPS_BOOTLOADER_CMDLINE_REQUIRE_COOKIE = "y";
|
MIPS_BOOTLOADER_CMDLINE_REQUIRE_COOKIE = "y";
|
||||||
MIPS_BOOTLOADER_CMDLINE_COOKIE = "\"liminix\"";
|
MIPS_BOOTLOADER_CMDLINE_COOKIE = "\"liminix\"";
|
||||||
MIPS_CMDLINE_DTB_EXTEND = "y";
|
MIPS_CMDLINE_DTB_EXTEND = "y";
|
||||||
|
|
||||||
|
OF = "y";
|
||||||
|
USE_OF = "y";
|
||||||
};
|
};
|
||||||
boot.commandLine = [
|
boot.commandLine = [
|
||||||
"console=ttyS0,115200" # true of all mips we've yet encountered
|
"console=ttyS0,115200" # true of all mips we've yet encountered
|
||||||
|
|
Loading…
Reference in a new issue