Displaying 7 results from an estimated 7 matches for "boot_multicons".
2008 Feb 16
1
Single user mode behaviour with serial console in 7.0RC2
Hi,
I have built a FreeBSD 7.0RC2 system to use both the serial and video 
consoles.
I find that when I drop into single user mode (shutdown now) on the terminal 
connected to the box itself I do not see the single user mode prompt on the 
serial console terminal.
Likewise, when I drop to single user mode on the serial console I do not see 
the single user prompt on the terminal connected to
2009 Mar 27
2
ALT_BREAK_TO... + ILO ... missing something in config ...
...y kernel, I've also got:
options         ALT_BREAK_TO_DEBUGGER
options         KDB
options         DDB
Missing a kernel option maybe?
I have the following in /boot/loader.conf:
comconsole_speed="9600"
console="vidconsole,comconsole" # A comma separated list of console(s)
boot_multicons="-D" # -D: Use multiple consoles
boot_serial="-h" # -h: Use serial console
So ... eithe rI don't have it enabled like I think, or I'm doing the wrong 
key stroke ... or ...
Thx
----
Marc G. Fournier           Hub.Org Networking Services (http://www.hub.org)
Email ....
2013 Feb 21
1
IPMI serial console
...Supermicro X9SCL motherboard with IPMI.
However I find that while I see loader messages and the getty I enabled  after boot I don't get any kernel messages which does somewhat limit the utility..
The BMC creates COM3 (/dev/cuau2) which works with getty. I modified /boot/loader.conf like so..
boot_multicons="yes"
boot_serial="YES"
console="comconsole vidconsole"
comconsole_speed="115200"
# Disable console flags on these 2 ports
hint.uart.0.flags="0x00"
hint.uart.1.flags="0x00"
# Set console flag
hint.uart.2.flags="0x10"
Does anyone...
2013 Jun 04
3
Serial terminal issues
...r from it.
The new system has a Gigabyte GA970A-UD3 board with just a serial header on the board. I bought a serial connector backplate in an electronics store and connected it to the board. Could the pinout be different or something?
> cat /boot.config 
-D -S19200
> cat /boot/loader.conf 
boot_multicons="YES"
boot_serial="YES"
comconsole_speed="19200"
console="comconsole,vidconsole"
> cat /etc/ttys
ttyv0   "/usr/libexec/getty Pc"         xterm   on  secure
# Virtual terminals
ttyv1   "/usr/libexec/getty Pc"         xterm   on  secure...
2006 Apr 05
2
serial console installation of 6.1-BETA4
Hi,
is the above supposed to work? I tried to follow what is written in the 
installation manual: unplugging the keyboard does nothing, booting with 
'boot -h' gives me all the kernel's device probing messages on both the 
serial console and the normal console, but after 'mounting root from ...'
sysinstall appears on the normal console.
harti
2013 Jun 10
1
ACPI Warning, then hang
I'm getting the following warning, and then the system locks:
ACPI Warning: Incorrect checksum in table [(bunch of spaces)] - 0x29,
should be 0x48
Here's a pic: http://db.tt/O6dxONzI
System is on a SuperMicro C7X58 motherboard that I just upgraded to
BIOS 2.0a, which I would like to stay on if possible.  I tried
adjusting all the ACPI related BIOS settings without success.
Bryce
2013 Oct 28
5
FreeBSD PVH guest support
...NGLE},
+	{"boot_nosync",		RB_NOSYNC},
+	{"boot_halt",		RB_ASKNAME},
+	{"boot_serial",		RB_SERIAL},
+	{"boot_cdrom",		RB_CDROM},
+	{"boot_gdb",		RB_GDB},
+	{"boot_gdb_pause",	RB_RESERVED1},
+	{"boot_verbose",	RB_VERBOSE},
+	{"boot_multicons",	RB_MULTIPLE},
+	{NULL,	0}
+};
+
+static struct bios_smap xen_smap[MAX_E820_ENTRIES];
+
+static int
+start_xen_ap(int cpu)
+{
+	struct vcpu_guest_context *ctxt;
+	int ms, cpus = mp_naps;
+
+	ctxt = malloc(sizeof(*ctxt), M_TEMP, M_NOWAIT | M_ZERO);
+	if (ctxt == NULL)
+		panic("unable to...