From owner-freebsd-embedded@FreeBSD.ORG Mon Aug 20 11:08:14 2007 Return-Path: Delivered-To: freebsd-embedded@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7079D16A418 for ; Mon, 20 Aug 2007 11:08:14 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5D8D413C442 for ; Mon, 20 Aug 2007 11:08:14 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l7KB8EG5087362 for ; Mon, 20 Aug 2007 11:08:14 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l7KB8DUm087358 for freebsd-embedded@FreeBSD.org; Mon, 20 Aug 2007 11:08:13 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 20 Aug 2007 11:08:13 GMT Message-Id: <200708201108.l7KB8DUm087358@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-embedded@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-embedded@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Dedicated and Embedded Systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2007 11:08:14 -0000 Current FreeBSD problem reports Critical problems Serious problems Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o misc/15876 embedded [picobsd] PicoBSD message of the day problems o misc/28255 embedded [picobsd] picobsd documentation still references old . o kern/42728 embedded [picobsd] many problems in src/usr.sbin/ppp/* after c f misc/52255 embedded [picobsd] picobsd build script fails under FreeBSD 5.0 o misc/52256 embedded [picobsd] picobsd build script does not read in user/s o kern/101228 embedded [nanobsd] [patch] Two more entries for FlashDevice.sub 6 problems total. From owner-freebsd-embedded@FreeBSD.ORG Sat Aug 25 02:15:59 2007 Return-Path: Delivered-To: freebsd-embedded@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A6FD16A41B for ; Sat, 25 Aug 2007 02:15:59 +0000 (UTC) (envelope-from sbruno@miralink.com) Received: from plato.miralink.com (mail.miralink.com [70.103.185.20]) by mx1.freebsd.org (Postfix) with ESMTP id 0980213C45A for ; Sat, 25 Aug 2007 02:15:58 +0000 (UTC) (envelope-from sbruno@miralink.com) Received: from localhost (localhost.localdomain [127.0.0.1]) by plato.miralink.com (Postfix) with ESMTP id 8015E619F19 for ; Fri, 24 Aug 2007 18:43:06 -0700 (PDT) Received: from plato.miralink.com ([127.0.0.1]) by localhost (plato.miralink.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10375-04 for ; Fri, 24 Aug 2007 18:43:05 -0700 (PDT) Received: from [10.47.1.126] (vpn.office.miralink.com [10.0.0.5]) by plato.miralink.com (Postfix) with ESMTP id 9AB05619F0F for ; Fri, 24 Aug 2007 18:43:05 -0700 (PDT) Message-ID: <46CF8929.4010106@miralink.com> Date: Fri, 24 Aug 2007 18:43:05 -0700 From: Sean Bruno User-Agent: Thunderbird 2.0.0.5 (X11/20070719) MIME-Version: 1.0 To: freebsd-embedded@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-DSPAM-Result: Innocent X-DSPAM-Processed: Fri Aug 24 18:43:06 2007 X-DSPAM-Confidence: 0.6181 X-DSPAM-Probability: 0.0000 X-DSPAM-Signature: 46cf892a291461410093335 X-DSPAM-Factors: 27, X-Virus-Scanned: amavisd-new at X-Spam-Status: No, score=-4.495 tagged_above=-10 required=6.6 autolearn=ham tests=[ALL_TRUSTED=-1.8, AWL=0.004, BAYES_00=-2.599, DSPAM_HAM=-0.1] X-Spam-Score: -4.495 X-Spam-Level: Cc: Subject: Nanobsd installing files into /root as user X-BeenThere: freebsd-embedded@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Dedicated and Embedded Systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Aug 2007 02:15:59 -0000 An interesting accident happened while I was building my Nanobsd image that created /root and all files in /root with ownerships of me! I have my FreeBSD src tree in subversion, so all files are owned by me. The image is built as root, so who cares right? Well the following function cares: ####################################################################### # Install the stuff under ./Files cust_install_files () ( cd ${NANO_TOOLS}/Files find . -print | grep -v /CVS | cpio -dumpv ${NANO_WORLDDIR} ) Since /Files is in a tree owned by me, I had to recursively chown it back to root in my build. so, install_files looks like this now: ####################################################################### # Install the stuff under ./Files cust_install_files () ( cd ${NANO_TOOLS}/Files find . -print | grep -v /CVS | cpio -dumpv ${NANO_WORLDDIR} chown -R root:wheel ${NANO_WORLDDIR}/root ) FYI for anyone crazy enough to do this in a method like mine. Sean