From owner-freebsd-arm@FreeBSD.ORG Wed Feb 6 02:56:03 2013 Return-Path: Delivered-To: freebsd-arm@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7644075 for ; Wed, 6 Feb 2013 02:56:03 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from duck.symmetricom.us (duck.symmetricom.us [206.168.13.214]) by mx1.freebsd.org (Postfix) with ESMTP id 3251D804 for ; Wed, 6 Feb 2013 02:56:02 +0000 (UTC) Received: from damnhippie.dyndns.org (daffy.symmetricom.us [206.168.13.218]) by duck.symmetricom.us (8.14.6/8.14.6) with ESMTP id r162u1XY004865 for ; Tue, 5 Feb 2013 19:56:01 -0700 (MST) (envelope-from ian@FreeBSD.org) Received: from [172.22.42.240] (revolution.hippie.lan [172.22.42.240]) by damnhippie.dyndns.org (8.14.3/8.14.3) with ESMTP id r162tqgx032426 for ; Tue, 5 Feb 2013 19:55:52 -0700 (MST) (envelope-from ian@FreeBSD.org) Subject: static dtb build dependency From: Ian Lepore To: freebsd-arm Content-Type: multipart/mixed; boundary="=-Tz84sQl7q56J1EFmNX3v" Date: Tue, 05 Feb 2013 19:55:52 -0700 Message-ID: <1360119352.93359.547.camel@revolution.hippie.lan> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Feb 2013 02:56:03 -0000 --=-Tz84sQl7q56J1EFmNX3v Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit I keep getting burned with option FDT_DTB_STATIC and changes not getting compiled in after I edit the .dts source. The attached patch seems to fix it for me, but is it the right way to fix it? -- Ian --=-Tz84sQl7q56J1EFmNX3v Content-Description: Content-Disposition: inline; filename="static_dtb.diff" Content-Type: text/x-patch; name="static_dtb.diff"; charset="us-ascii" Content-Transfer-Encoding: 7bit Index: sys/conf/files =================================================================== --- sys/conf/files (revision 246337) +++ sys/conf/files (working copy) @@ -1293,7 +1293,8 @@ dev/fdt/fdt_common.c optional fdt dev/fdt/fdt_pci.c optional fdt pci dev/fdt/fdt_slicer.c optional fdt cfi | fdt nand -dev/fdt/fdt_static_dtb.S optional fdt fdt_dtb_static +dev/fdt/fdt_static_dtb.S optional fdt fdt_dtb_static \ + dependency "$S/boot/fdt/dts/${FDT_DTS_FILE}" dev/fdt/fdtbus.c optional fdt dev/fdt/simplebus.c optional fdt dev/fe/if_fe.c optional fe --=-Tz84sQl7q56J1EFmNX3v--