aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/uathload
Commit message (Collapse)AuthorAgeFilesLines
* various: general adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. No functional change intended. Notes: svn path=/head/; revision=326276
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+0
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
* Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper2017-03-011-2/+2
| | | | | | | | | | | | | The SRCTOP conversion simplifies pathing in make/displayed output. Also, while here, change a hardcoded path to ar5523.bin.uu in the make target with ${.ALLSRC} . MFC after: 1 week Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314451
* Rename devname to udevname after including stdlib.h in r303445Bjoern A. Zeeb2016-07-301-9/+9
| | | | | | | | | as gcc trips over the devname(3) and reports 'shadows a global declaration'. This should unbreak gcc based world builds. Notes: svn path=/head/; revision=303560
* Call basename() and dirname() in the POSIXly correct way.Ed Schouten2016-07-281-5/+17
| | | | | | | | Pull copies of the input string, as these functions are allowed to modify them. Free the copies after creating the new pathname string. Notes: svn path=/head/; revision=303445
* Implement suggestion by jhb@ to have _PATH_FIRMWARE instead of hardWarner Losh2016-03-231-1/+1
| | | | | | | coding it to be "/usr/share/firmware". Notes: svn path=/head/; revision=297205
* Just install ar5523.bin into /usr/share/firmware and stop compiling itWarner Losh2016-03-152-34/+16
| | | | | | | | | in. Differential Review: https://reviews.freebsd.org/D5639 Notes: svn path=/head/; revision=296889
* Document why we use -z nonexecstack in the Makefile since itWarner Losh2015-11-211-0/+10
| | | | | | | | | | is so unusual. Turn off mis-match warnings for building uathload because the firmware .o file is produced in a way that we can't get to match exactly. This fixes the build on mips, so stop excluding it from the build. Notes: svn path=/head/; revision=291139
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+18
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Updated dependenciesSimon J. Gerraty2014-05-161-1/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=266219
| * Updated dependenciesSimon J. Gerraty2014-05-101-0/+2
| | | | | | | | Notes: svn path=/projects/bmake/; revision=265802
| * Updated dependenciesSimon J. Gerraty2013-03-111-0/+1
| | | | | | | | Notes: svn path=/projects/bmake/; revision=248169
| * Updated dependenciesSimon J. Gerraty2013-02-161-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=246868
| * Sync FreeBSD's bmake branch with Juniper's internal bmake branch.Marcel Moolenaar2012-08-221-0/+19
|/ | | | | | | Requested by: Simon Gerraty <sjg@juniper.net> Notes: svn path=/projects/bmake/; revision=239572
* Only use -z noexecstack for these explicit arches: i386, amd64, powerpcDimitry Andric2011-02-161-1/+1
| | | | | | | | | and powerpc64. Other arches currently do not support this feature. Reminded by: kib Notes: svn path=/head/; revision=218749
* Fix the last binary in the base system that still has an executableDimitry Andric2011-02-161-0/+4
| | | | | | | | | | | stack, /usr/sbin/uathload. Since this program links in a .o file containing a firmware blob, and there is no clean way to add a .note.GNU-stack section to this .o file, we simply use the -z noexecstack option to ld here. Notes: svn path=/head/; revision=218748
* The -d flag is non-optional.Christian Brueffer2010-05-121-2/+2
| | | | | | | | | PR: 143694 Submitted by: Nikolai Saoukh <nms+bsd@otdel-1.org> MFC after: 1 week Notes: svn path=/head/; revision=207947
* The last big commit: let usr.sbin/ use WARNS=6 by default.Ed Schouten2010-01-021-2/+0
| | | | Notes: svn path=/head/; revision=201390
* add uathload.8Weongyo Jeong2009-04-082-1/+70
| | | | | | | Reviewed by: brueffer Notes: svn path=/head/; revision=190838
* Add uath(4) wireless USB driver for Atheros AR5005UG and AR5005UXWeongyo Jeong2009-04-042-0/+251
chipsets. Reviewed by: sam Notes: svn path=/head/; revision=190688