I tried with multiple baud rate (9600, 19200, 38400, 57600 and 115200). But no luck. Here are the changes I have for each speed,
1. Set the speed to X (Eg: 115200) in BIOS for the COM0 serial port. (Other Constant values: Data bits - 8, Stop bits - 1, Parity - 1, Flow Control - None)
Mounted bootable usb and made the following changes
2. boot.config
3. boot/loader.conf
4. boot/device.hints
5. etc/ttys
From Windows, I have the serial settings as below and connected.
One other reason I could see is,
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193745#c22
Could this reason be the case here? Or is there anything wrong in the above settings or its order?
1. Set the speed to X (Eg: 115200) in BIOS for the COM0 serial port. (Other Constant values: Data bits - 8, Stop bits - 1, Parity - 1, Flow Control - None)
Mounted bootable usb and made the following changes
2. boot.config
Code:
-SX -Dh
Eg: -S115200 -Dh
Code:
boot_multicons="YES"
boot_serial="YES"
comconsole_speed="X" (Eg: 115200)
comconsole_port=0x3F8
console=comconsole
hw.uart.console="io:0x3F8"
Code:
hint.uart.0.at="isa"
hint.uart.0.baud="X" (Eg: 115200)
hint.uart.0.flags=0x10
hint.uart.0.port=0x3F8
hint.uart.1.at="isa"
hint.uart.1.baud="X" (Eg: 115200)
hint.uart.1.port=0x2F8
Code:
ttyu0 "/usr/libexec/getty 3wire" vt100 onifconsole secure
Otherways,
ttyu0 "/usr/libexec/getty 3wire.X" vt100 onifconsole secure (Eg: 3wire.115200)
ttyu0 "/usr/libexec/getty std.X" vt100 onifconsole secure (Eg: std.115200)
From Windows, I have the serial settings as below and connected.
Code:
Speed - X (Eg: 115200)
Data bits - 8
Stop bits - 1
Parity - 1
Flow Control - None
One other reason I could see is,
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193745#c22
Could this reason be the case here? Or is there anything wrong in the above settings or its order?