From owner-freebsd-arm@FreeBSD.ORG Tue Jul 19 07:42:48 2011 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA68A106566B for ; Tue, 19 Jul 2011 07:42:48 +0000 (UTC) (envelope-from damjan.marion@gmail.com) Received: from mail-fx0-f44.google.com (mail-fx0-f44.google.com [209.85.161.44]) by mx1.freebsd.org (Postfix) with ESMTP id 697998FC12 for ; Tue, 19 Jul 2011 07:42:48 +0000 (UTC) Received: by fxe6 with SMTP id 6so5922548fxe.17 for ; Tue, 19 Jul 2011 00:42:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=subject:mime-version:content-type:from:in-reply-to:date:cc :message-id:references:to:x-mailer; bh=lsfEPMyMluBz1bBhaKEGNMQiVzc2BRHJwKwVDJyQ9VE=; b=D2RUF5zdCJmbUeMgxdTiMudME78bhNgvcxz95urchpLXcmB9zXP5hxFp5HqzQBG43/ rIHavP5Lh2eyFGXphthd+50Coywry4P0jqLLteQ+n2sP6JkpaLzDjrpVOsFqXJIaqRsf hhPN9Z34M87zqOH2vfvt+0oGT4BVsAmTDdjbM= Received: by 10.223.158.72 with SMTP id e8mr11053499fax.39.1311061367307; Tue, 19 Jul 2011 00:42:47 -0700 (PDT) Received: from damarion-mac.home (cpe-109-60-79-155.zg3.cable.xnet.hr [109.60.79.155]) by mx.google.com with ESMTPS id l22sm3503689fam.9.2011.07.19.00.42.45 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 19 Jul 2011 00:42:46 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v1244.3) From: Damjan Marion In-Reply-To: Date: Tue, 19 Jul 2011 09:42:44 +0200 Message-Id: References: <20110718120023.5381410656B5@hub.freebsd.org> <1311045829.1508.11.camel@bmcgover-laptop.beta.com> To: satish kondapalli X-Mailer: Apple Mail (2.1244.3) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "Brian J. McGovern" , freebsd-arm@freebsd.org Subject: Re: freebsd-arm Digest, Vol 276, Issue 1 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jul 2011 07:42:49 -0000 On Jul 19, 2011, at 6:53 AM, satish kondapalli wrote: > Thanks McGovern, >=20 >> =46rom gcc info it is clear that Free BSD GCC is not supporting the > armv7(with march option) architecture and not supporting Coretx-A8 > processor ( with mcpu option). Actually I am compiling the kernel for > Cortex-A8 ( it has armv7-a archtecture) processor. >=20 > =46rom gcc info, i didn't find any mcpu option for cortex and march = option > armv7. >=20 > Can anyone please tell me how to build the free BSD kernel for = cortex-A8 > processor( armv7 arch) with Free BSD GCC. >=20 Problem is that gcc 4.2.1 doesn't support armv7 so you need to use = custom toolchain. If it supports procedure would be easy: make buildkernel TARGET=3Darm TARGET_CPUTYPE=3Dcortex-a8 Damjan=