From owner-freebsd-embedded@freebsd.org Thu Jun 20 18:44:24 2019 Return-Path: Delivered-To: freebsd-embedded@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1FC6515C47A8 for ; Thu, 20 Jun 2019 18:44:24 +0000 (UTC) (envelope-from mike@sentex.net) Received: from pyroxene.sentex.ca (unknown [IPv6:2607:f3e0:0:3::18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "pyroxene.sentex.ca", Issuer "Let's Encrypt Authority X3" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 6F06C91191 for ; Thu, 20 Jun 2019 18:44:13 +0000 (UTC) (envelope-from mike@sentex.net) Received: from [192.168.43.29] ([192.168.43.29]) by pyroxene.sentex.ca (8.15.2/8.15.2) with ESMTPS id x5KIiAKu063384 (version=TLSv1.2 cipher=AES128-SHA bits=128 verify=NO); Thu, 20 Jun 2019 14:44:11 -0400 (EDT) (envelope-from mike@sentex.net) Subject: Re: NanoBSD cust_pkgng problem.... To: Karl Denninger , freebsd-embedded@freebsd.org References: <27515540-54ef-6e7e-1b87-9be875b54c22@denninger.net> From: mike tancsa Message-ID: Date: Thu, 20 Jun 2019 14:44:13 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.7.1 MIME-Version: 1.0 In-Reply-To: <27515540-54ef-6e7e-1b87-9be875b54c22@denninger.net> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Content-Language: en-US X-Rspamd-Queue-Id: 6F06C91191 X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of mike@sentex.net designates 2607:f3e0:0:3::18 as permitted sender) smtp.mailfrom=mike@sentex.net X-Spamd-Result: default: False [-1.48 / 15.00]; ARC_NA(0.00)[]; RDNS_NONE(1.00)[]; RCVD_TLS_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip6:2607:f3e0::/32]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[sentex.net]; NEURAL_HAM_MEDIUM(-0.99)[-0.991,0]; TO_MATCH_ENVRCPT_SOME(0.00)[]; MX_GOOD(-0.01)[smtp.sentex.ca]; RCPT_COUNT_TWO(0.00)[2]; NEURAL_HAM_SHORT(-0.95)[-0.950,0]; IP_SCORE(-1.73)[ipnet: 2607:f3e0::/32(-4.95), asn: 11647(-3.59), country: CA(-0.09)]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:11647, ipnet:2607:f3e0::/32, country:CA]; HFILTER_HOSTNAME_UNKNOWN(2.50)[]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-embedded@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Dedicated and Embedded Systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 18:44:24 -0000 On 6/20/2019 2:16 PM, Karl Denninger wrote: > I'm trying to rebuild 12-STABLE with current code with the following for > the PCEngines systems. > > > Failed to install the following 1 package(s): > /_.p/isc-dhcp44-server-4.4.1_4.txz Thats so strange. I saw that too.  I did change defaults.sh  # Early customize commands.  NANO_EARLY_CUSTOMIZE="" @@ -776,6 +776,7 @@         fi           # Mount packages into chroot +       mount -t devfs devfs ${NANO_WORLDDIR}/dev         mkdir -p ${NANO_WORLDDIR}/_.p         mount -t nullfs -o noatime -o ro ${NANO_PACKAGE_DIR} ${NANO_WORLDDIR}/_.p   @@ -802,7 +803,7 @@         )           CR0 "${PKGCMD} info" - +       umount ${NANO_WORLDDIR}/dev         trap - 1 2 15 EXIT         umount ${NANO_WORLDDIR}/_.p         rm -rf ${NANO_WORLDDIR}/_.p to get rid of the dev/null complaints.  I thought the pkg might be borked somehow in the poudriere build, so I rebuilt it and then it all worked. But I am not sure if that was just a fluke.  I havent seen the issue since... But it was the same isc package that my build was borking on as well.     ---Mike