From patchwork Sun Jan 25 12:52:48 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?QW50dGkgU2VwcMOkbMOk?= X-Patchwork-Id: 432502 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 5C73F140188 for ; Sun, 25 Jan 2015 23:53:53 +1100 (AEDT) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 42D4328BE18; Sun, 25 Jan 2015 13:51:21 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id AF2E228BE0D for ; Sun, 25 Jan 2015 13:51:11 +0100 (CET) X-policyd-weight: using cached result; rate: -8.5 Received: from mail-la0-f45.google.com (mail-la0-f45.google.com [209.85.215.45]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Sun, 25 Jan 2015 13:51:08 +0100 (CET) Received: by mail-la0-f45.google.com with SMTP id gd6so3999493lab.4 for ; Sun, 25 Jan 2015 04:53:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:mime-version:content-type :content-transfer-encoding; bh=GhSceT3vVteKGRnEf4E79qMVux6549pDhpOSV5Vv8dw=; b=nR/UKmretIYK6Pp549AcDH+s1vQF5Gc3czEiQxG2P8rWNNjFWtp3fxzfgWtuQTVuFo Z9XfGZB3Zbol18E2KyDmk9B26H9guR4TUmeHq04B5lqO28DU8os5ZvWww4i8RrTz+2WG W/I+Yfpd08ovU4SP8mGrukmNPJHUSvPZBKRNC3EosdPgrtlyCKO2NsWOocDBmn/dmvVR 8SVlK56xV1G2l749zr5n3wgLqxXoDzWARwSkKhvIxf49C0q1r1cx1q01//QMWT1noOSF 4s+xYxfGFQeaNEG4uLtlJQgid/5Q49pPs63RNpcBHVqoK90dJynKzFMY35HE5Gr+aTgJ 92oA== X-Received: by 10.112.162.226 with SMTP id yd2mr16518443lbb.1.1422190411672; Sun, 25 Jan 2015 04:53:31 -0800 (PST) Received: from griffin.lan (a91-154-177-101.elisa-laajakaista.fi. [91.154.177.101]) by mx.google.com with ESMTPSA id rp6sm1845288lbb.4.2015.01.25.04.53.30 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 25 Jan 2015 04:53:30 -0800 (PST) From: =?UTF-8?q?Antti=20Sepp=C3=A4l=C3=A4?= To: openwrt-devel@lists.openwrt.org Date: Sun, 25 Jan 2015 14:52:48 +0200 Message-Id: <1422190368-31840-1-git-send-email-a.seppala@gmail.com> X-Mailer: git-send-email 2.0.5 MIME-Version: 1.0 Subject: [OpenWrt-Devel] [PATCH] uboot-lantiq: fix P-2812HNU-F1/3 package dependency X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" After r43987 TARGET_lantiq_xrx200_P2812HNUFX does not exist anymore. Fix empty menuconfig bootloader selection by making u-boot depend on one of the new target profiles. Signed-off-by: Antti Seppälä --- package/boot/uboot-lantiq/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/boot/uboot-lantiq/Makefile b/package/boot/uboot-lantiq/Makefile index d2b868f..d59aac8 100644 --- a/package/boot/uboot-lantiq/Makefile +++ b/package/boot/uboot-lantiq/Makefile @@ -247,14 +247,14 @@ define uboot/p2812hnufx_ram TITLE:=U-Boot for ZyXEL P-2812HNU-Fx (RAM) SOC:=vr9 DDR_SETTINGS:=board/zyxel/p2812hnufx/ddr_settings.h - DEPS:=@TARGET_lantiq_xrx200_P2812HNUFX + DEPS:=@TARGET_lantiq_xrx200_P2812HNUF1||@TARGET_lantiq_xrx200_P2812HNUF3 endef define uboot/p2812hnufx_nandspl TITLE:=U-Boot for ZyXEL P-2812HNU-Fx (NAND SPL) SOC:=vr9 IMAGE:=u-boot.ltq.lzo.nandspl - DEPS:=@TARGET_lantiq_xrx200_P2812HNUFX + DEPS:=@TARGET_lantiq_xrx200_P2812HNUF1||@TARGET_lantiq_xrx200_P2812HNUF3 endef