From nobody Wed Nov 27 10:59:16 2024 X-Original-To: stable@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4XyxK36S8rz5f1TJ for ; Wed, 27 Nov 2024 10:59:19 +0000 (UTC) (envelope-from rs@bytecamp.net) Received: from mxout01.bytecamp.net (mxout01.bytecamp.net [212.204.60.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4XyxK30482z45Fn for ; Wed, 27 Nov 2024 10:59:18 +0000 (UTC) (envelope-from rs@bytecamp.net) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=bytecamp.net header.s=20140709 header.b=nduANlH0; spf=pass (mx1.freebsd.org: domain of rs@bytecamp.net designates 212.204.60.217 as permitted sender) smtp.mailfrom=rs@bytecamp.net; dmarc=none Received: by mxout01.bytecamp.net (Postfix, from userid 1001) id 0ABFD3EFAF; Wed, 27 Nov 2024 11:59:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=bytecamp.net; h=message-id:date:mime-version:subject:to:references:from:in-reply-to:content-type:content-transfer-encoding; s=20140709; bh=zG0MnAvBnG6cTMnCwgq2tnauvF8=; b=nduANlH0AFOoh4hpAFl5gZASggrUzrniq/xBu+gvvqL7i5EIctUBENRjNSCW8AOSu/EeDzYUBTJyox8ZKzFHHkecMY0keM77zR0GOBDE+2wTzXonTexEXxZREuzWhk7Ep88HWcSoZ2r6BN+vl0MI9/0PDFZRuntlNVZ+vQms5EA= Received: from mail.bytecamp.net (mail.bytecamp.net [212.204.60.9]) by mxout01.bytecamp.net (Postfix) with ESMTP id B81EA3EFAB for ; Wed, 27 Nov 2024 11:59:16 +0100 (CET) Received: (qmail 84739 invoked from network); 27 Nov 2024 11:59:16 +0100 Received: from unknown (HELO ?192.168.3.41?) (rs%bytecamp.net@212.37.175.53) by mail.bytecamp.net with ESMTPS (AES128-GCM-SHA256 encrypted); 27 Nov 2024 11:59:16 +0100 Message-ID: <27224122-3f36-4e88-87b4-c4cfc0a6b7d8@bytecamp.net> Date: Wed, 27 Nov 2024 11:59:16 +0100 List-Id: Production branch of FreeBSD source code List-Archive: https://lists.freebsd.org/archives/freebsd-stable List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-stable@freebsd.org Sender: owner-freebsd-stable@FreeBSD.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: not working /dev/console Content-Language: de-DE To: stable@freebsd.org References: From: Robert Schulze Organization: bytecamp GmbH In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spamd-Result: default: False [-4.66 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; DWL_DNSWL_LOW(-1.00)[bytecamp.net:dkim]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.97)[-0.970]; R_SPF_ALLOW(-0.20)[+ip4:212.204.60.0/24]; R_DKIM_ALLOW(-0.20)[bytecamp.net:s=20140709]; RCVD_IN_DNSWL_LOW(-0.20)[212.204.60.217:from,212.204.60.9:received]; MIME_GOOD(-0.10)[text/plain]; XM_UA_NO_VERSION(0.01)[]; ARC_NA(0.00)[]; HAS_ORG_HEADER(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:12693, ipnet:212.204.32.0/19, country:DE]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; TO_DN_NONE(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; DMARC_NA(0.00)[bytecamp.net]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; PREVIOUSLY_DELIVERED(0.00)[stable@freebsd.org]; MLMMJ_DEST(0.00)[stable@freebsd.org]; DKIM_TRACE(0.00)[bytecamp.net:+] X-Rspamd-Queue-Id: 4XyxK30482z45Fn X-Spamd-Bar: ---- Hello, Am 27.11.24 um 09:34 schrieb Daniel Braniss: > Hi, > when the console is not uart0, init’s output, which I assume uses /dev/console > is lost. Boot, kernel and login work ok, also debugger. you can give the loader a hint, which uart is considered a console. In my case, any IPMI-console on uart1 works with the following settings in /boot/loader.conf: -- boot_multicons="yes" comconsole_port="0x2f8" hint.uart.0.flags="0x0" hint.uart.1.flags="0x10" hint.uart.1.baud="115200" -- hint.uart.N.flags="0x10" means: this is a potential system console. See uart(4) manpage for this. regards, Robert Schulze