summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Correct the r242545 sync with head@242525.obrien2013-02-07175-82743/+4
|
* Use STAGE_OBJTOP for STAGE_SYMLINKS_DIR etcsjg2013-01-291-0/+6
|
* Handle chmod of staged files/linkssjg2013-01-291-5/+22
|
* Handle staging SYMKINKS and LINKS bettersjg2013-01-291-8/+17
|
* Move build of openpam_static_modules.o to its own subdirsjg2013-01-245-48/+113
| | | | | | to avoid circular dependency b/w libpam and modules. Reviewed by: obrien
* Include the target filename in SYMLINKS to avoid any confusion aboutsjg2013-01-236-6/+6
| | | | what is dirname and filename.
* If PROGNAME is set, we need to use stage_as rather than stage_filessjg2013-01-231-2/+14
| | | | to control the name in the stage tree.
* Because the target of SYMLINKS is typically a full path, wesjg2013-01-232-0/+2
| | | | "stage" them to the stage tree rather than a location within.
* Put NLS related symlinks into their own variable, so thatsjg2013-01-171-1/+10
| | | | when MK_STAGING_PROG is true, we can put them in the right place.
* Add pkgs/Makefile* and pkgs/pseudo/* so folk can test drive.sjg2012-11-0940-0/+1902
|
* Add TIME_STAMPsjg2012-11-091-0/+9
|
* defined(${group}NAME) is also a trigger for special handlingsjg2012-11-081-2/+6
|
* Allow clean at level 0sjg2012-11-081-1/+1
|
* Need CXXFLAGS_LAST and LDFLAGS_LASTsjg2012-11-081-3/+5
|
* Use prebuild and a barrier, to allow ensuring headers aresjg2012-11-081-2/+10
| | | | staged before we attempt to build anything.
* Need CXXFLAGS_LAST and LDFLAGS_LASTsjg2012-11-081-0/+3
|
* We need /backward too it seemssjg2012-11-081-0/+4
|
* Avoid circular dependency with librtld_dbsjg2012-11-081-0/+2
|
* include/arpa installs telnet.hsjg2012-11-081-3/+0
|
* Avoid two makefiles trying to install the same headerssjg2012-11-081-0/+2
|
* We need headers from ${KRB5DIR}/include toosjg2012-11-081-1/+2
|
* Fix .ORDER to not conflict with captured dependenciessjg2012-11-081-1/+1
|
* Qualifying targets with ${.OBJDIR}/ confuses make for little reason.sjg2012-11-081-4/+4
|
* If we are staging, we need to look in the right place, forsjg2012-11-082-4/+17
| | | | the headers we want to examine.
* Updated/new Makefile.dependsjg2012-11-08243-40/+1443
|
* We ended up with contrib/bmakesjg2012-11-08129-55048/+0
|
* Latest version from Cruftysjg2012-11-082-25/+64
|
* Latest dirdeps etc from Juniper Networks.sjg2012-11-082-12/+66
|
*-------. Sync from headsjg2012-11-049154-361789/+1029620
|\ \ \ \ \
| * | | | | Add a MD_ROOT_FSTYPE kernel option. The option specifies themarcel2012-11-032-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | file system part for the MD_ROOT mount string. Hardcoding the the file system type as "ufs" is too restrictive.
| * | | | | Add the bus attachment for the embedded EHCI HC.marcel2012-11-031-0/+1
| | | | | |
| * | | | | Allow using the embedded EHCI host controller in Freescale SoCsmarcel2012-11-032-6/+12
| | | | | | | | | | | | | | | | | | | | | | | | by adding the missing bits. See ehci_fsl.c for their use.
| * | | | | Add the buildLINT convenience target, handy for build automation.marcel2012-11-031-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The automation can set TARGET_ARCH and TARGET and then make various top-level targets, including buildLINT and buildkernel (with KERNCONF=LINT). Previously there was no way to generate the LINT kernel configuration without having to do something exceptionally painful.
| * | | | | o DragonFly 2.3.1 added.maxim2012-11-031-1/+2
| | | | | |
| * | | | | When a file is first being written, the dynamic block reallocationmckusick2012-11-032-2/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (implemented by ffs_reallocblks_ufs[12]) relocates the file's blocks so as to cluster them together into a contiguous set of blocks on the disk. When the cluster crosses the boundary into the first indirect block, the first indirect block is initially allocated in a position immediately following the last direct block. Block reallocation would usually destroy locality by moving the indirect block out of the way to keep the data blocks contiguous. This change compensates for this problem by noting that the first indirect block should be left immediately following the last direct block. It then tries to start a new cluster of contiguous blocks (referenced by the indirect block) immediately following the indirect block. We should also do this for other indirect block boundaries, but it is only important for the first one. Suggested by: Bruce Evans MFC: 2 weeks
| * | | | | Replace log(3) with flsll(3) for watchdogd(8) and drop libm dependency.delphij2012-11-032-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | MFC after: 2 weeks
| * | | | | Merge r242395,242483 from mutex implementation:attilio2012-11-033-43/+155
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | give rwlock(9) the ability to crunch different type of structures, with the only constraint that they have a lock cookie named rw_lock. This name, then, becames reserved from the struct that wants to use the rwlock(9) KPI and other locking primitives cannot reuse it for their members. Namely such structs are the current struct rwlock and the new struct rwlock_padalign. The new structure will define an object which has the same layout of a struct rwlock but will be allocated in areas aligned to the cache line size and will be as big as a cache line. For further details check comments on above mentioned revisions. Reviewed by: jimharris, jeff
| * | | | | Revert the change that makes less default.eadler2012-11-032-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since I've committed this I've receieved roughly an equal amount of email thanking me for making this change and asking me to revert it. I've resisted making this change because new users tend to prefer less over more and these users are the least likely to know how to change the PAGER on their own. Requested by: many Objected to: just as many Decision made by: core Approved by: cperciva MFC after: 3 days
| * | | | | Fix errno in a couple of error cases.tuexen2012-11-031-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | MFC after: 3 days
| * | | | | Print a newline after the error message.jh2012-11-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR: bin/168447 Submitted by: Boris Kochergin
| * | | | | HAL API updates, from the previous couple of HAL commits.adrian2012-11-031-2/+4
| | | | | |
| * | | | | HAL API changes!adrian2012-11-033-3/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * introduce a new HAL API method to pull out the TX status descriptor contents. * Add num_delims to the 11n first aggr method. This isn't used by the driver at the moment so it won't affect anything.
| * | | | | Add a debug method to dump the EDMA TX status descriptor contents out.adrian2012-11-032-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This requires some HAL API changes to be useful, as there's no way right now to pull out the TX status descriptor contents.
| * | | | | Sync strlcpy with userland version.delphij2012-11-031-33/+17
| | | | | | | | | | | | | | | | | | | | | | | | MFC after: 1 month
| * | | | | Sync strlen with userland implementation.delphij2012-11-031-13/+98
| | | | | | | | | | | | | | | | | | | | | | | | MFC after: 1 month
| * | | | | Fix typobapt2012-11-031-1/+1
| | | | | |
| * | | | | If no contents keyword is specified, the default for files issjg2012-11-031-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the named file. Approved by: marcel (mentor)
| * | | | | Add a couple of examples.joel2012-11-021-1/+65
| | | | | | | | | | | | | | | | | | | | | | | | Obtained from: OpenBSD
| * | | | | Copy code from scsi_read_write() as mfi_build_syspd_cdb() to build SCSIdelphij2012-11-021-26/+82
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | command properly. Without this change, mfi(4) always sends 10 byte READ and WRITE commands, which will cause data corruption when device is larger than 2^32 sectors. PR: kern/173291 Submitted by: Steven Hartland <steven.hartland multiplay.co.uk> Reviewed by: mav MFC after: 2 weeks
| * | | | | Update nsamples and nbuffers defaults to match reality.jimharris2012-11-021-3/+3
| | | | | |
OpenPOWER on IntegriCloud