diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-11-08 19:55:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-11-08 19:55:53 +0000 |
commit | 3cccbcc99dac53f2d09146af229f2f36e12094ba (patch) | |
tree | a6e38efb7669b2b5fcf6ea713b8a9a4dd908caca | |
parent | 8edfb9c0b517e4fdc82028943291a5c0d5f63bdd (diff) |
Now that the code is well tested, don't ask the firmware question
anymore. Saves 141 precious bytes on the inside of the media.
ok krw
-rw-r--r-- | distrib/miniroot/install.sub | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 659ca6b4efd..26f5c414df6 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.653 2011/10/18 19:02:44 matthieu Exp $ +# $OpenBSD: install.sub,v 1.654 2011/11/08 19:55:52 deraadt Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback @@ -1650,11 +1650,7 @@ run_sysmerge() { } update_firmware() { - local _get=Install - [[ $MODE == upgrade ]] && _get=Update - ask_yn "$_get non-free firmware files on first boot?" no - [[ $resp == y ]] && \ - echo "/usr/sbin/fw_update -v" >> /mnt/etc/rc.firsttime + echo "/usr/sbin/fw_update -v" >> /mnt/etc/rc.firsttime } # Create a skeletal but useful /etc/fstab from /tmp/fstab by stripping all |