From owner-freebsd-arm@FreeBSD.ORG Sat Nov 29 02:52:16 2014 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DE30F324 for ; Sat, 29 Nov 2014 02:52:15 +0000 (UTC) Received: from alogt.com (alogt.com [69.36.191.58]) (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 B526A81E for ; Sat, 29 Nov 2014 02:52:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=alogt.com; s=default; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date; bh=MIlk7Fb4S6sKLnXxKKf13EssvoeaSTkxf5R6vuNRtpI=; b=k87SSR5x5y9czl6RhupAG5B3CZfAQslwoz46gZQUsbxZImjdd07XImK/X6Z4jqi6XTyoTlQiqZM8JVEuImKAV1XGvc2R3s3bPpDfZ1dGM0kaLZTcoQ3wmSEOdRdTvh6q0GlGcDxJsYHk9SyB1HCIZjpsfCr1qDKMPs+W7REAPmk=; Received: from [114.121.160.118] (port=26657 helo=X220.alogt.com) by sl-508-2.slc.westdc.net with esmtpa (Exim 4.84) (envelope-from ) id 1XuY8r-002vCh-UI; Fri, 28 Nov 2014 19:52:14 -0700 Date: Sat, 29 Nov 2014 10:52:10 +0800 From: Erich Dollansky To: Eric Gunther Subject: Re: Raspberry Pi composite video problem Message-ID: <20141129105210.5a72a8ec@X220.alogt.com> In-Reply-To: <1417229109.1835.2.camel@warwick.net> References: <1417167767.23507.2.camel@warwick.net> <1417193156.3202.1.camel@warwick.net> <20141129084900.10050d11@X220.alogt.com> <1417229109.1835.2.camel@warwick.net> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sl-508-2.slc.westdc.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - alogt.com X-Get-Message-Sender-Via: sl-508-2.slc.westdc.net: authenticated_id: erichsfreebsdlist@alogt.com X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-arm@freebsd.org X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2014 02:52:16 -0000 Hi, On Fri, 28 Nov 2014 21:45:09 -0500 Eric Gunther wrote: > On Sat, 2014-11-29 at 08:49 +0800, Erich Dollansky wrote: > > > On Fri, 28 Nov 2014 11:45:56 -0500 > > Eric Gunther wrote: > > . > > > > > > Eureka, I have logged in via ssh. Not sure what is different > > > although the last few things I did where: > > > > > > rechecked /etc/inetd.conf, /etc/rc.conf, /etc/services > > > > > > service sshd enable > > > service sshd reload > > > > > > And plugged in the client computer after the RPi had been > > > connected to the ethernet, worked using IP. > > > > > sshd can run without inetd. > > Thanks for telling me. Funny thing, it stopped working afterward and > cannot get it working again (ssh). Getting ssh working was, in a way, > beside the point. I would like to figure out how to fix the display > issue. If I had a working Ethernet connection to the Pi I could; > Download the firmware and put it on, Adjust configuration files > easier, and Report dmesg or similar message output to the list as > needed. > just put this into your rc.conf: inetd_enable="YES" inetd_flags="-wW -a whateveraddress" and this ftp stream tcp nowait root /usr/libexec/ftpd ftpd -l ftp stream tcp6 nowait root /usr/libexec/ftpd ftpd -l ssh stream tcp nowait root /usr/sbin/sshd sshd -i -4 ssh stream tcp6 nowait root /usr/sbin/sshd sshd -i -6 telnet stream tcp nowait root /usr/libexec/telnetd telnetd telnet stream tcp6 nowait root /usr/libexec/telnetd telnetd into your inetd.conf. If all other things fail, you should be able to transfer files via ftp then. > I emphasize that this is to more quickly and efficiently fix > the display. I realize that you mentioned that you are not able to > help with the composite video. So no thoughts on whether the > firmware would help that problem? That is, text off the screen. > I have the B+ only. The 10.1 firmware should be able to handle the older model without a problem. Erich