make kernel config visually consistent: symbols are unquoted
This commit is contained in:
parent
4faf529dc3
commit
a2d8eaf95d
3 changed files with 25 additions and 34 deletions
|
@ -134,17 +134,17 @@
|
||||||
# of it is device config, some of it is wifi config or
|
# of it is device config, some of it is wifi config or
|
||||||
# installation method config or ...
|
# installation method config or ...
|
||||||
|
|
||||||
"CMDLINE_PARTITION" = "y";
|
CMDLINE_PARTITION = "y";
|
||||||
"EARLY_PRINTK" = "y";
|
EARLY_PRINTK = "y";
|
||||||
"FW_LOADER" = "y";
|
FW_LOADER = "y";
|
||||||
# we don't have a user helper, so we get multiple 60s pauses
|
# we don't have a user helper, so we get multiple 60s pauses
|
||||||
# at boot time unless we disable trying to call it
|
# at boot time unless we disable trying to call it
|
||||||
"FW_LOADER_USER_HELPER" = "n";
|
FW_LOADER_USER_HELPER = "n";
|
||||||
|
|
||||||
"PARTITION_ADVANCED" = "y";
|
PARTITION_ADVANCED = "y";
|
||||||
"PRINTK_TIME" = "y";
|
PRINTK_TIME = "y";
|
||||||
"SQUASHFS" = "y";
|
SQUASHFS = "y";
|
||||||
"SQUASHFS_XZ" = "y";
|
SQUASHFS_XZ = "y";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -90,24 +90,19 @@
|
||||||
MTD_CMDLINE_PARTS = "y";
|
MTD_CMDLINE_PARTS = "y";
|
||||||
MTD_BLOCK = "y"; # fix undefined ref to register_mtd_blktrans_devs
|
MTD_BLOCK = "y"; # fix undefined ref to register_mtd_blktrans_devs
|
||||||
|
|
||||||
CPU_LITTLE_ENDIAN= "y";
|
CPU_LITTLE_ENDIAN = "y";
|
||||||
|
|
||||||
# this is all copied from nixwrt ath79 config. Clearly not all
|
CMDLINE_PARTITION = "y";
|
||||||
# of it is device config, some of it is wifi config or
|
EARLY_PRINTK = "y";
|
||||||
# installation method config or ...
|
FW_LOADER = "y";
|
||||||
|
|
||||||
"CMDLINE_PARTITION" = "y";
|
|
||||||
"EARLY_PRINTK" = "y";
|
|
||||||
"FW_LOADER" = "y";
|
|
||||||
# we don't have a user helper, so we get multiple 60s pauses
|
# we don't have a user helper, so we get multiple 60s pauses
|
||||||
# at boot time unless we disable trying to call it
|
# at boot time unless we disable trying to call it
|
||||||
"FW_LOADER_USER_HELPER" = "n";
|
FW_LOADER_USER_HELPER = "n";
|
||||||
|
|
||||||
|
PARTITION_ADVANCED = "y";
|
||||||
"PARTITION_ADVANCED" = "y";
|
PRINTK_TIME = "y";
|
||||||
"PRINTK_TIME" = "y";
|
SQUASHFS = "y";
|
||||||
"SQUASHFS" = "y";
|
SQUASHFS_XZ = "y";
|
||||||
"SQUASHFS_XZ" = "y";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -103,21 +103,17 @@
|
||||||
GPIOLIB="y";
|
GPIOLIB="y";
|
||||||
GPIO_MT7621 = "y";
|
GPIO_MT7621 = "y";
|
||||||
|
|
||||||
# this is all copied from nixwrt ath79 config. Clearly not all
|
CMDLINE_PARTITION = "y";
|
||||||
# of it is device config, some of it is wifi config or
|
EARLY_PRINTK = "y";
|
||||||
# installation method config or ...
|
FW_LOADER = "y";
|
||||||
|
|
||||||
"CMDLINE_PARTITION" = "y";
|
|
||||||
"EARLY_PRINTK" = "y";
|
|
||||||
"FW_LOADER" = "y";
|
|
||||||
# we don't have a user helper, so we get multiple 60s pauses
|
# we don't have a user helper, so we get multiple 60s pauses
|
||||||
# at boot time unless we disable trying to call it
|
# at boot time unless we disable trying to call it
|
||||||
"FW_LOADER_USER_HELPER" = "n";
|
FW_LOADER_USER_HELPER = "n";
|
||||||
|
|
||||||
"PARTITION_ADVANCED" = "y";
|
PARTITION_ADVANCED = "y";
|
||||||
"PRINTK_TIME" = "y";
|
PRINTK_TIME = "y";
|
||||||
"SQUASHFS" = "y";
|
SQUASHFS = "y";
|
||||||
"SQUASHFS_XZ" = "y";
|
SQUASHFS_XZ = "y";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue