From patchwork Mon Nov 7 08:34:30 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emmanuel Vadot X-Patchwork-Id: 691824 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3tC5P804Zhz9vH0 for ; Mon, 7 Nov 2016 19:35:40 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=bidouilliste.com header.i=@bidouilliste.com header.b="OWWA2zeV"; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 570BEA75EE; Mon, 7 Nov 2016 09:35:28 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1Mt3O0Ngy6vv; Mon, 7 Nov 2016 09:35:28 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1F028A75F5; Mon, 7 Nov 2016 09:35:25 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 14F3DA756F for ; Mon, 7 Nov 2016 09:35:15 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wqH9K4lIg1v2 for ; Mon, 7 Nov 2016 09:35:14 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail.blih.net (mail.blih.net [212.83.177.182]) by theia.denx.de (Postfix) with ESMTPS id B8CC0A754A for ; Mon, 7 Nov 2016 09:35:14 +0100 (CET) Received: from mail.blih.net (mail.blih.net [212.83.177.182]) by mail.blih.net (OpenSMTPD) with ESMTP id 74fb1d3a for ; Mon, 7 Nov 2016 09:35:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=bidouilliste.com; h=from :to:cc:subject:date:message-id:in-reply-to:references; s=mail; bh=u06kEJqRXzhCqE3bKHmFntgEzt4=; b=OWWA2zeV49TDQVZ2sDY2nMywuJni 8lUymRx1dJIbCf3cGFxLYFI/Be/aLPrSRo7oZBQzej1srWNLg4f0m89af5zljGLv cKZVPfPz5fZh/WZNinB85HE3vubkmIw73gzVaBhLVnoGJQuwlMkIynQoRde+cgzo DgbrIdak5lXXnQU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=bidouilliste.com; h=from:to :cc:subject:date:message-id:in-reply-to:references; q=dns; s= mail; b=X/94nY4T3FzczIOaI8Xl4333jj9UXsL4xXXnmoOaQWBcZLz1rmL1zh7O EJQaEPahQzJZd3Kf51jxEeIXXv/FFGayu+Pl4ep9fDCuDc189Ey6J7RS7ugGgmDk q+k4INxxL26KigWEG7irKfiGebIlEUtwBeECjzqjoTjl3CnLM3w= Received: from knuckles.blih.net (ip-54.net-82-216-203.roubaix.rev.numericable.fr [82.216.203.54]) by mail.blih.net (OpenSMTPD) with ESMTPSA id 2c69644e TLS version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO for ; Mon, 7 Nov 2016 09:35:13 +0100 (CET) Received: from elbarto (uid 1001) (envelope-from manu@bidouilliste.com) id 386b5a by knuckles.blih.net (DragonFly Mail Agent v0.11); Mon, 07 Nov 2016 09:35:13 +0100 From: Emmanuel Vadot To: u-boot@lists.denx.de Date: Mon, 7 Nov 2016 09:34:30 +0100 Message-Id: <20161107083431.24855-4-manu@bidouilliste.com> X-Mailer: git-send-email 2.9.2 In-Reply-To: <20161107083431.24855-1-manu@bidouilliste.com> References: <20161107083431.24855-1-manu@bidouilliste.com> Subject: [U-Boot] [PATCH 3/4] kconfig: Add a FREEBSD option X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Add a FreeBSD option that enable the API and disable the data cache as it is needed to boot the FreeBSD loader. Signed-off-by: Emmanuel Vadot --- common/Kconfig | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/common/Kconfig b/common/Kconfig index 913d21a..73cd205 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -383,4 +383,13 @@ config DISPLAY_BOARDINFO when U-Boot starts up. The board function checkboard() is called to do this. +config FREEBSD + bool "Enable FreeBSD boot" + select API + select SYS_DCACHE_OFF + default n + help + This option adds boot configuration that can run the FreeBSD + loader. + source "common/spl/Kconfig"