aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/bsdconfig/share
Commit message (Collapse)AuthorAgeFilesLines
* bsdconfig, bsdinstall: Prune dead mirrorsNiclas Zeising2020-09-261-13/+0
| | | | | | | | | | | | | Prune dead mirrors from the list of mirrors in bsdconfig and bsdinstall. All these return NXDOMAIN when trying to resolve them. Reviewed by: emaste Approved by: emaste MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D26535 Notes: svn path=/head/; revision=366186
* bsdconfig: remove the Italian mirrorPhilip Paeps2020-02-281-1/+0
| | | | | | | | | | | ftp.it.FreeBSD.org has been down for several years. PR: 244481 Reported by: xgeoplasma6@gmail.com MFC after: 3 days Notes: svn path=/head/; revision=358418
* Miscellaneous typo fixesEd Maste2020-02-071-1/+1
| | | | | | | | Submitted by: Gordon Bergling <gbergling_gmail.com> Differential Revision: https://reviews.freebsd.org/D23453 Notes: svn path=/head/; revision=357664
* Fix spurious error from sysrcDevin Teske2019-12-021-1/+1
| | | | | | | | | | | | | | | | | When using sysrc to modify a file, the file should be created silently. However, with the introduction of SVN r335280, an error of "No such file or directory" would appear despite everything else working as-expected. The nature of this spurious error is that SVN r335280 did not check if the file exists first, before trying to fixup the line-endings in the file just prior to modification. PR: bin/240875 Reported by: Jose Luis Duran MFC after: 3 days Notes: svn path=/head/; revision=355280
* Fix dialog autosizing to accomodate for hlineDevin Teske2018-10-281-1/+1
| | | | | | | | | | | | | dialog will conditionally ignore the --hline option if not enough space was available to accomodate for the text width. Traditionally the width of the widget had to be 10 wider than the text. Recent updates to dialog have changed the requirement to be at least 12 wider than the hline text else the hline text is not rendered at the bottom of the widget. Sponsored by: Smule, Inc. Notes: svn path=/head/; revision=339844
* Remove vestigial DIALOG_ITEM_HELP value in bsdconfig dialog.subrDevin Teske2018-10-251-1/+0
| | | | | | | Sponsored by: Smule, Inc. Notes: svn path=/head/; revision=339752
* sysrc.subr: Fix a comment for accuracyDevin Teske2018-06-171-1/+1
| | | | | | | | | | | | PR: bin/203435 Reported by: Andreas Sommer <andreas.sommer87@googlemail.com> MFC after: 6 days X-MFC-to: stable/11 X-MFC-with: r335280 Sponsored by: Smule, Inc. Notes: svn path=/head/; revision=335302
* sysrc.subr: Fix display when value is "-n"Devin Teske2018-06-171-2/+2
| | | | | | | | | | | PR: bin/226406 Reported by: Marius Halden <marius.halden@modirum.com> MFC after: 1 week X-MFC-to: stable/11 Sponsored by: Smule, Inc. Notes: svn path=/head/; revision=335281
* sysrc.subr: Fix handling of files with missing newline at EOFDevin Teske2018-06-171-1/+11
| | | | | | | | | | | PR: bin/203435 Reported by: Andreas Sommer <andreas.sommer87@googlemail.com> MFC after: 1 week X-MFC-to: stable/11 Sponsored by: Smule, Inc. Notes: svn path=/head/; revision=335280
* nxge(4):Sean Bruno2018-05-081-1/+0
| | | | | | | | | | | | | Remove nxge(4) and associated man page and tools in FreeBSD 12.0. Submitted by: kbowling Reviewed by: brooks Relnotes: yes Sponsored by: Limelight Networks Differential Revision: https://reviews.freebsd.org/D1529 Notes: svn path=/head/; revision=333388
* Retire ixgb(4)Sean Bruno2018-05-021-1/+0
| | | | | | | | | | | | | | This driver was for an early and uncommon legacy PCI 10GbE for a single ASIC, Intel 82597EX. Intel quickly shifted to the long lived ixgbe family. Submitted by: kbowling Reviewed by: brooks imp jeffrey.e.pieper@intel.com Relnotes: yes Sponsored by: Limelight Networks Differential Revision: https://reviews.freebsd.org/D15234 Notes: svn path=/head/; revision=333173
* Fix long standing issue in bsdconfig's keymap selectionDevin Teske2017-05-251-1/+4
| | | | | | | | | | | | | | | | | | | Since the translation to vt as terminal emulator, the keymaps files path has changed and this change does not get followed in bsdconfig. This implicates boot time warnings about a wrong keymap file, what is very confusing for the new users and for me too, so initialize the default keymaps search path depending on terminal type. Differential Revision: https://reviews.freebsd.org/D8734 Submitted by: Oliver Pinter <oliver.pinter@hardenedbsd.org> Reviewed by: ed, jilles, dteske MFC after: 3 days X-MFC-to: stable/11 Sponsored by: HardenedBSD Signed-off-by: Oliver Pinter <oliver.pinter@hardenedbsd.org> Notes: svn path=/head/; revision=318891
* More ATM and NATM removalBrooks Davis2017-04-271-1/+0
| | | | | | | | | Submitted by: ak Reviewed by: ngie Differential Revision: https://reviews.freebsd.org/D10511 Notes: svn path=/head/; revision=317508
* Guard against bad service name argument(s) to load_rc_config()Devin Teske2016-10-161-1/+3
| | | | | | | | MFC after: 3 days X-MFC-to: stable/11 stable/10 Notes: svn path=/head/; revision=307402
* Add bsdconfig `wifi' (aka `wireless' or `wlan') moduleDevin Teske2016-06-162-1/+1393
| | | | | | | | | Approved by: re (gjb) MFC after: 8 weeks Relnotes: yes Notes: svn path=/head/; revision=301973
* Don't repeat the the word 'the'Eitan Adler2016-05-171-1/+1
| | | | | | | | | | (one manual change to fix grammar) Confirmed With: db Approved by: secteam (not really, but this is a comment typo fix) Notes: svn path=/head/; revision=300050
* usr.sbin/bsdconfig: minor spelling fixes on comments.Pedro F. Giffuni2016-05-016-13/+13
| | | | | | | No functional change. Notes: svn path=/head/; revision=298884
* f_substr(): Optimized recipe if running under bashDevin Teske2016-02-031-69/+104
| | | | | | | | | This makes runnig f_substr() faster than it was when running under bash, but both sh and dash are still faster when using the non-bash recipe which features dynamically unrolled loops. Notes: svn path=/head/; revision=295197
* Remove SIG prefix from trapped signalsDevin Teske2016-02-031-5/+4
| | | | | | | Makes traps functional if running under shells/dash Notes: svn path=/head/; revision=295196
* f_substr: Write to stdout when no `-v var_to_set'Devin Teske2016-02-031-1/+5
| | | | | | | Fixes ``setvar: : bad variable name'' Notes: svn path=/head/; revision=295195
* Remove trailing whitespaceDevin Teske2016-02-031-2/+2
| | | | Notes: svn path=/head/; revision=295194
* Define f_sprintf() dynamically at inclusion timeDevin Teske2016-02-031-12/+17
| | | | | | | No need to check/re-check capabilities that won't change at runtime. Notes: svn path=/head/; revision=295180
* Move awk(1)-dependent recipes to the bottomDevin Teske2016-01-311-114/+114
| | | | Notes: svn path=/head/; revision=295106
* Move f_isinteger() to the topDevin Teske2016-01-311-10/+10
| | | | | | | Grouping builtins-only algos together Notes: svn path=/head/; revision=295105
* Move f_vsprintf() below f_sprintf()Devin Teske2016-01-311-10/+10
| | | | | | | Variable argument versions grouped with standard versions Notes: svn path=/head/; revision=295104
* Move f_sprintf() above f_snprintf()Devin Teske2016-01-311-15/+15
| | | | | | | Ordering functions by appearance of use Notes: svn path=/head/; revision=295103
* Optimize f_substr() to use built-ins onlyDevin Teske2016-01-311-32/+57
| | | | | | | Change f_snprintf() to use optimzed f_substr() Notes: svn path=/head/; revision=295102
* Optimize f_sprintf() for bashDevin Teske2016-01-311-1/+9
| | | | | | | | | | | bash lacks the ksh93 optimization that makes sub-shells fast if they do not alter io. bash 3.1-alpha1 introduced printf -v var_to_set which is not as fast but is still significantly faster than var_to_set=$( printf ) when using any version of bash. If we find our interpreter to somehow be bash by invocation or inclusion, use the feature that provides fastest results. Notes: svn path=/head/; revision=295101
* Reset OPTIND to 1 in f_device_find()Devin Teske2016-01-311-2/+2
| | | | Notes: svn path=/head/; revision=295100
* Replace awk with more efficient builtins-only algoDevin Teske2016-01-271-9/+55
| | | | Notes: svn path=/head/; revision=294880
* Use dpv(1) in `bsdconfig packages'Devin Teske2016-01-272-7/+11
| | | | Notes: svn path=/head/; revision=294866
* Fix ABI parsingDevin Teske2016-01-271-2/+6
| | | | Notes: svn path=/head/; revision=294865
* Change incorrect pathDevin Teske2016-01-271-2/+2
| | | | Notes: svn path=/head/; revision=294864
* Fix a typo in a commentDevin Teske2016-01-241-1/+1
| | | | | | | | MFC after: 3 days X-MFC-to: stable/10 Notes: svn path=/head/; revision=294669
* Fix improper duration for f_dialog_pause() APIDevin Teske2016-01-091-1/+0
| | | | | | | | MFC after: 3 days X-MFC-to: stable/10 Notes: svn path=/head/; revision=293617
* META MODE: Update dependencies with 'the-lot' and add missing directories.Bryan Drewery2015-12-012-0/+22
| | | | | | | | | | | | | | | | | This is not properly respecting WITHOUT or ARCH dependencies in target/. Doing so requires a massive effort to rework targets/ to do so. A better approach will be to either include the SUBDIR Makefiles directly and map to DIRDEPS or just dynamically lookup the SUBDIR. These lose the benefit of having a userland/lib, userland/libexec, etc, though and results in a massive package. The current implementation of targets/ is very unmaintainable. Currently rescue/rescue and sys/modules are still not connected. Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=291563
* META MODE: These need object directories to handle staging.Bryan Drewery2015-11-263-6/+0
| | | | | | | Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=291347
* Add support for "rc.conf.d" file(s).Devin Teske2015-11-121-1/+95
| | | | | | | | | | | | Differential Revision: https://reviews.freebsd.org/D3551 Reviewed by: allanjude MFC after: 1 week X-MFC-to: stable/10 X-MFC-with: 290337 Relnotes: yes Notes: svn path=/head/; revision=290693
* META_MODE: Remove DEP_RELDIR from Makefile.depend files.Bryan Drewery2015-09-251-2/+0
| | | | | | | | | This has not been needed since r284171 in projects/bmake. Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=288226
* Fix code typo (no functional change)Devin Teske2015-09-141-3/+3
| | | | | | | | MFC after: 3 days X-MFC-to: stable/10 Notes: svn path=/head/; revision=287803
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+13
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * Merge sync of headSimon J. Gerraty2015-05-273-4/+87
| |\ | |/ |/| | | Notes: svn path=/projects/bmake/; revision=283595
| * Merge from head@274682Simon J. Gerraty2014-11-198-24/+66
| |\ | | | | | | | | | Notes: svn path=/projects/bmake/; revision=274683
| * \ Merge head from 7/28Simon J. Gerraty2014-08-199-89/+110
| |\ \ | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=270164
| * \ \ Merge headSimon J. Gerraty2014-04-2826-965/+2981
| |\ \ \ | | | | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=265044
| * \ \ \ Merge head@256284Simon J. Gerraty2013-10-1317-68/+83
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=256424
| * | | | | New dependenciesSimon J. Gerraty2013-10-131-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=256418
* | | | | | Fix typo in a comment.Devin Teske2015-03-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MFC after: 3 days X-MFC-to: stable/10 stable/9 Notes: svn path=/head/; revision=280921
* | | | | | Update copyrights.Devin Teske2015-02-102-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=278493
* | | | | | Add bsdconfig api function f_dialog_menutag2help()Devin Teske2015-02-101-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=278491