forked from DGNum/liminix
declare device.flash options in base.nix
because they're specified in devices/*/default.nix
This commit is contained in:
parent
6d191b73ae
commit
0cd1bd99e1
2 changed files with 4 additions and 4 deletions
|
@ -68,6 +68,10 @@ in {
|
||||||
defaultOutput = mkOption {
|
defaultOutput = mkOption {
|
||||||
type = types.nonEmptyStr;
|
type = types.nonEmptyStr;
|
||||||
};
|
};
|
||||||
|
flash = {
|
||||||
|
address = mkOption { type = types.str; };
|
||||||
|
size = mkOption { type = types.str; };
|
||||||
|
};
|
||||||
loadAddress = mkOption { default = null; };
|
loadAddress = mkOption { default = null; };
|
||||||
entryPoint = mkOption { };
|
entryPoint = mkOption { };
|
||||||
radios = mkOption {
|
radios = mkOption {
|
||||||
|
|
|
@ -9,10 +9,6 @@ let
|
||||||
inherit (config.boot) tftp;
|
inherit (config.boot) tftp;
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
device.flash = {
|
|
||||||
address = mkOption { type = types.str; };
|
|
||||||
size = mkOption { type = types.str; };
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
config = {
|
config = {
|
||||||
kernel = {
|
kernel = {
|
||||||
|
|
Loading…
Reference in a new issue