aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/hpt27xx
Commit message (Collapse)AuthorAgeFilesLines
* sys: Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* hpt27xx: Use EXTRA_OBJS instead of OBJSWarner Losh2021-06-021-1/+1
| | | | | | Sponsored by: Netflix Reviewed by: emaste@ Differential Revision: https://reviews.freebsd.org/D30616
* hpt27xx: store the .o files directly in the treeWarner Losh2021-04-121-4/+1
| | | | | | | | | Store the .o files directly in the tree. We no longer need to play uuencode games like we did in the CVS days. Adjust the build infrastructure to match. Reviewed by: markj@ Sposnored by: Netflix, Inc Differential Revision: https://reviews.freebsd.org/D29634
* sys/modules: normalize .CURDIR-relative paths to SRCTOPEnji Cooper2017-03-041-1/+1
| | | | | | | | | | | This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314651
* Import HighPoint DC Series Data Center HBA (DC7280 and R750) driver.Xin LI2013-07-061-1/+1
| | | | | | | | | | | This driver works for FreeBSD/i386 and FreeBSD/amd64 platforms. Many thanks to HighPoint for providing this driver. MFC after: 1 day Notes: svn path=/head/; revision=252867
* - Don't include date and time the driver is built, this is useful forXin LI2013-01-221-3/+0
| | | | | | | | | | | | generating binary diffs. - Constify a few strings used in the driver. - Style changes to make the driver compile with default clang settings. Approved by: HighPoint Technologies MFC after: 3 days Notes: svn path=/head/; revision=245768
* When building with clang, disable -Wformat-security forDimitry Andric2012-02-211-0/+3
| | | | | | | | | | | | | | | | | | | | | | | sys/dev/hpt27xx/osm_bsd.c, since it gets the following warnings: sys/dev/hpt27xx/osm_bsd.c:1180:25: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security] S_IRUSR | S_IWUSR, driver_name); ^~~~~~~~~~~ @/dev/hpt27xx/hpt27xx_config.h:46:21: note: expanded from: #define driver_name hpt27xx_driver_name ^~~~~~~~~~~~~~~~~~~ Since 'hpt27xx_driver_name' is a constant string symbol (coming from the proprietary hpt27xx_lib.o file), there is no security problem. Because this driver is provided by the vendor, and applying changes requires re-certification and other bureaucratic exercises, just disable the warning for now. MFC after: 1 week Notes: svn path=/head/; revision=231982
* Import the first release of HighPoint RocketRAID 27xx SAS 6Gb/s HBA cardXin LI2011-12-281-0/+14
driver. This driver works for FreeBSD/i386 and FreeBSD/amd64 platforms. Many thanks to HighPoint for providing this driver. MFC after: 2 weeks Notes: svn path=/head/; revision=228940