From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 28279 invoked from network); 12 Mar 2021 10:41:20 -0000 Received: from 1ess.inri.net (216.126.196.35) by inbox.vuxu.org with ESMTPUTF8; 12 Mar 2021 10:41:20 -0000 Received: from ms11p00im-qufo17282101.me.com ([17.58.38.58]) by 1ess; Fri Mar 12 05:36:42 -0500 2021 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=me.com; s=1a1hai; t=1615545393; bh=754GnBiWVOwFU28dhMviRYL+2Dl2p2imJR0vCnU/KGk=; h=From:Content-Type:Mime-Version:Subject:Date:To:Message-Id; b=Eeex87RNURbcEoB+97Py2dKG1ZBB3AB8jMBQdDprIc55UrqeghDm1w8FjrxaUOH/j a2jRtKH4/wNR71HwNeaL6CHAHKGqz5bJFC80xTB70oJhjwv+g1d1M19vzjTJc67jKr +9fosoLLntnXcNXzOjbw96XOro+pSsjHCm0qH98J5aAGNnJog+SQlEGolhlg+UrT95 twik9e6oHp1+HZalq6G9oc37Nru739+LQVaY/8R3lGIIWZGa+0ejRI/PKGKAbCMzt3 HR/OTMwiJz7a+dN4At5aPZZ6ydR1uz4xC7tYY+J63QEqd1UBi84Ttz8qLdiPxoX/6z f0rjFhgsrua0g== Received: from [192.168.0.88] (unknown [46.234.244.221]) by ms11p00im-qufo17282101.me.com (Postfix) with ESMTPSA id 54049780F12 for <9front@9front.org>; Fri, 12 Mar 2021 10:36:33 +0000 (UTC) From: Daniel Morandini Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Mac OS X Mail 14.0 \(3654.40.0.2.32\)) Date: Fri, 12 Mar 2021 11:36:30 +0100 References: <0BEAEA67139CE537F0AE008DC06176FA@felloff.net> To: 9front@9front.org In-Reply-To: <0BEAEA67139CE537F0AE008DC06176FA@felloff.net> Message-Id: <1721CD21-19AF-482A-B75D-F56A903A57A1@me.com> X-Mailer: Apple Mail (2.3654.40.0.2.32) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.369,18.0.761 definitions=2021-03-12_03:2021-03-10,2021-03-12 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=0 malwarescore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 mlxscore=0 mlxlogscore=782 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-2006250000 definitions=main-2103120073 List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: leveraged core grid Subject: Re: [9front] PXE booting Rpi Reply-To: 9front@9front.org Precedence: bulk Hi cinap, Thanks for answering and sorry for bothering. > you need to add this attribute to the host tuple: > vendor=3D"Raspberry Pi Boot" > (listed in dhcpd(8) and ndb(8) manpages) I did not notice this was the parameter I was looking for \o/ > for bootf=3D, i think you need to specify bootcode.bin, > the bootcode then will construct a tftp path that > includes the mac address to fetch cmdline.txt and > the kernel (and all the other files that you would > normally stash on the sd card). I did not finish everything, just a quick update for the record. I created a folder in /lib/pxe/ that holds the files required for the boot. The tftpd (and dhcpd) server is pointing its home directory to /lib/pxe. I did it because bootcode.bin (which is on the sd card, my rasp won=E2=80=99t pxe boot without it) prepends = the serial number to its file requests. I would have preferred to use the .[ICE] naming convention found in the code, but that=E2=80=99s out = of my control as long as I keep using the standard bootcode.bin. The pi boots :D For now the problem is the cmdline.txt file (which is transferred by tftpd) is not forwarded correctly to the kernel, so my "plan9.ini" configuration is not applied. I=E2=80=99m still = debugging this. Cheers, dan=