This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sys/cam/ctl/scsi_ctl.c b/sys/cam/ctl/scsi_ctl.c | |
index 1d547d5..e60d70e 100644 | |
--- a/sys/cam/ctl/scsi_ctl.c | |
+++ b/sys/cam/ctl/scsi_ctl.c | |
@@ -729,7 +816,7 @@ ctlfestart(struct cam_periph *periph, union ccb *start_ccb) | |
/* | |
* We're done, send status back. | |
*/ | |
- flags |= CAM_SEND_STATUS; | |
+ flags |= CAM_DIR_NONE | CAM_SEND_STATUS; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sys/cam/ctl/ctl.c b/sys/cam/ctl/ctl.c | |
index 7a36509..d2595b5 100644 | |
--- a/sys/cam/ctl/ctl.c | |
+++ b/sys/cam/ctl/ctl.c | |
@@ -9353,8 +9353,16 @@ ctl_inquiry_std(struct ctl_scsiio *ctsio) | |
if (lun != NULL) | |
inq_ptr->device = (SID_QUAL_LU_CONNECTED << 5) | | |
lun->be_lun->lun_type; | |
- else | |
- inq_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BIOS Setup | |
---------- | |
1) Boot into the BIOS setup utility (press F2 or DEL) and open Advanced > Serial Port Console Redirection. | |
2) Disable COM1 and EMS console redirection and enable SOL redirection. | |
3) Set the SOL console redirection settings as follows: | |
Aptio Setup Utility - Copyright (C) 2012 American Megatrends, Inc. | |
Advanced | |
/----------------------------------------------------+-------------------------\ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JAVA_HOME=/compat/linux/jvm/jdk1.8.0_101 | |
_JAVA_OPTIONS=-Duser.home=/home/ctuffli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make -j8 buildkernel CC=/usr/local/bin/clang38 KERNCONF=CAMNVM MAKEOBJDIRPREFIX=/home/ctuffli/dev/freebsd/obj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function dirs { Get-Location; Get-Location -Stack } |