From c59b3eab5e88158df1b369f532e78b154d3f6010 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Tue, 2 Dec 2014 14:33:14 +0100 Subject: [PATCH] Add --no-uboot option --- README.md | 4 ++++ novaboot | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/README.md b/README.md index bf9e39d..25815cc 100644 --- a/README.md +++ b/README.md @@ -450,6 +450,10 @@ can currently be accomplished by the following options: **--amt**, Implementation of this option is currently tied to a particular board that we use. It may be subject to changes in the future! +- --no-uboot + + Disable U-Boot interaction previously enabled with **--uboot**. + - --uboot-init Command(s) to send the U-Boot bootloader before loading the images and diff --git a/novaboot b/novaboot index 0dd1beb..aa896ef 100755 --- a/novaboot +++ b/novaboot @@ -197,6 +197,7 @@ my %opt_spec; "tftp" => \$tftp, "tftp-port=i" => \$tftp_port, "uboot:s" => \$uboot, + "no-uboot" => sub { undef $uboot; }, "uboot-addr=s" => \%uboot_addr, "uboot-cmd=s" => \$uboot_cmd, "uboot-init=s" => \@uboot_init, @@ -1636,6 +1637,10 @@ novaboot script. I specifies the U-Boot's prompt (default is Implementation of this option is currently tied to a particular board that we use. It may be subject to changes in the future! +=item --no-uboot + +Disable U-Boot interaction previously enabled with B<--uboot>. + =item --uboot-init Command(s) to send the U-Boot bootloader before loading the images and -- 2.39.2