From owner-freebsd-emulation@freebsd.org Mon Apr 17 17:06:10 2017 Return-Path: Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F0A7D420E9 for ; Mon, 17 Apr 2017 17:06:10 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 54F42952 for ; Mon, 17 Apr 2017 17:06:10 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 517A3D420E8; Mon, 17 Apr 2017 17:06:10 +0000 (UTC) Delivered-To: emulation@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51240D420E7 for ; Mon, 17 Apr 2017 17:06:10 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2C1C4950 for ; Mon, 17 Apr 2017 17:06:10 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id 530936B78; Mon, 17 Apr 2017 17:06:09 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 387166B77; Mon, 17 Apr 2017 17:06:09 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from sg.miwi.cc (sg.miwi.cc [45.76.178.87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "", Issuer "Miwi" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C7D9594F; Mon, 17 Apr 2017 17:06:07 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from [192.168.1.122] (121.121.120.106 [121.121.120.106]) by sg.miwi.cc (OpenSMTPD) with ESMTPSA id 3a378351 TLS version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Tue, 18 Apr 2017 01:05:59 +0800 (MYT) From: "Martin Wilke" To: "Remko Lodder" , vbox@FreeBSD.org Subject: Re: patch for building kBuild on armv6 Date: Mon, 17 Apr 2017 17:05:59 +0000 Message-Id: In-Reply-To: References: Reply-To: "Martin Wilke" User-Agent: eM_Client/7.0.27943.0 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Mailman-Approved-At: Mon, 17 Apr 2017 17:11:58 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Apr 2017 17:06:10 -0000 Hi Remko, Just commit it. Regards, Martin ------ Original Message ------ From: "Remko Lodder" To: vbox@FreeBSD.org Sent: 16/04/2017 09:47:03 PM Subject: patch for building kBuild on armv6 >Hi, > >I have a little patch to build kBuild on armv6; > >--- Makefile.orig 2017-04-16 15:42:16.858371000 +0200 >+++ Makefile 2017-04-16 15:42:33.841671000 +0200 >@@ -25,7 +25,7 @@ > WRKSRC=3D ${WRKDIR}/${PORTNAME}-${DISTVERSION} > > KBUILD_VERSION=3D 0.1.9998 >-KBUILD_ARCH=3D =20 >${MACHINE_ARCH:S/i386/x86/:S/x86_64/amd64/:S/powerpc/ppc32/} >+KBUILD_ARCH=3D =20 >${MACHINE_ARCH:S/i386/x86/:S/x86_64/amd64/:S/powerpc/ppc32/:S/armv6/arm/} > KBUILD_ENV=3D ACLOCAL=3D${ACLOCAL} \ > AUTOMAKE=3D${AUTOMAKE} \ > AUTORECONF=3D${AUTORECONF} \ > >With that the port seems to work fine. > >Do I need to create a PR? Then I will ofcourse do so. > >Cheers >Remko