You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
owut: allow user to ignore removed default packages
Add a mechanism for ignoring missing defaults when doing the default
package analysis. Any packages in the ignored list will be flagged
as "user ignored" and not be mentioned in the missing-defaults
warnings.
Signed-off-by: Eric Fahlgren <[email protected]>
{name: "command",position: 0,one_of: commands,action: "store",help: "Sub-command to execute"},
150
-
{name: "version_to",short: "-V",long: "--version-to",action: "store",nargs: 1,default: null,help: "Specify the target version, defaults to installed version."},
151
-
{name: "rev_code",short: "-R",long: "--rev-code",action: "rc",nargs: 1,default: null,help: "Specify a 'version_code', literal 'none' allowed, defaults to latest build."},
152
-
{name: "verbosity",short: "-v",long: "--verbose",action: "inc",default: 0,help: "Print various diagnostics. Repeat for even more output."},
153
-
{name: "verbosity",short: "-q",long: "--quiet",action: "dec",default: 0,help: "Reduce verbosity. Repeat for total silence."},
154
-
{name: "keep",short: "-k",long: "--keep",action: "set",default: false,help: "Save all downloaded working files."},
155
-
{name: "force",long: "--force",action: "set",default: false,help: "Force a build even when there are downgrades or no changes."},
156
-
{name: "add",short: "-a",long: "--add",action: "storex",nargs: 1,help: "New packages to add to build list."},
157
-
{name: "remove",short: "-r",long: "--remove",action: "storex",nargs: 1,help: "Installed packages to remove from build list."},
158
-
{name: "init_script",short: "-I",long: "--init-script",action: "store",nargs: 1,default: null,help: "Path to uci-defaults script to run on first boot ('-' use stdin)."},
159
-
{name: "fstype",short: "-F",long: "--fstype",action: "enum",nargs: 1,default: null,one_of: _fstypes,help: `Desired root file system type (${join(", ",_fstypes)}).`},
160
-
{name: "rootfs_size",short: "-S",long: "--rootfs-size",action: "store_int",nargs: 1,default: null,lower: _fslo,upper: _fshi,help: `DANGER: See wiki before using! Root file system size in MB (${_fslo}-${_fshi}).`},
161
-
{name: "image",short: "-i",long: "--image",action: "store",nargs: 1,default: "/tmp/firmware.bin",help: "Image name for download, verify, install and upgrade."},
{name: "pre_install",short: "-p",long: "--pre-install",action: "store",nargs: 1,default: null,help: "Script to exec just prior to launching final sysupgrade."},
164
-
{name: "poll_interval",short: "-T",long: "--poll-interval",action: "store_int",nargs: 1,default: 2000,help: "Poll interval for build monitor, in milliseconds."},
{name: "init_script",short: "-I",long: "--init-script",action: "store",nargs: 1,default: null,help: "Path to uci-defaults script to run on first boot ('-' use stdin)."},
160
+
{name: "fstype",short: "-F",long: "--fstype",action: "enum",nargs: 1,default: null,one_of: _fstypes,help: `Desired root file system type (${join(", ",_fstypes)}).`},
161
+
{name: "rootfs_size",short: "-S",long: "--rootfs-size",action: "store_int",nargs: 1,default: null,lower: _fslo,upper: _fshi,help: `DANGER: See wiki before using! Root file system size in MB (${_fslo}-${_fshi}).`},
162
+
{name: "image",short: "-i",long: "--image",action: "store",nargs: 1,default: "/tmp/firmware.bin",help: "Image name for download, verify, install and upgrade."},
{name: "pre_install",short: "-p",long: "--pre-install",action: "store",nargs: 1,default: null,help: "Script to exec just prior to launching final sysupgrade."},
165
+
{name: "poll_interval",short: "-T",long: "--poll-interval",action: "store_int",nargs: 1,default: 2000,help: "Poll interval for build monitor, in milliseconds."},
0 commit comments