From patchwork Thu Sep 28 17:55:04 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos Santos X-Patchwork-Id: 819704 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3y32R33GYcz9t66 for ; Fri, 29 Sep 2017 03:55:26 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id B31CC88E7E; Thu, 28 Sep 2017 17:55:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id W8mwQMoVFDxW; Thu, 28 Sep 2017 17:55:21 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 69A3488BA2; Thu, 28 Sep 2017 17:55:21 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 987981CEBBE for ; Thu, 28 Sep 2017 17:55:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 6490B88A85 for ; Thu, 28 Sep 2017 17:55:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0-cnzmlV7In6 for ; Thu, 28 Sep 2017 17:55:18 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.datacom.ind.br (mx.datacom.ind.br [177.66.5.10]) by hemlock.osuosl.org (Postfix) with ESMTPS id ADDA9880BC for ; Thu, 28 Sep 2017 17:55:18 +0000 (UTC) Received: from mail.datacom.ind.br (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTPS id 087FF14E08D6; Thu, 28 Sep 2017 14:54:52 -0300 (BRT) Received: from localhost (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTP id EA6D814E0694; Thu, 28 Sep 2017 14:54:51 -0300 (BRT) Received: from mail.datacom.ind.br ([127.0.0.1]) by localhost (mail.datacom.ind.br [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id EJBbzD85gVIN; Thu, 28 Sep 2017 14:54:51 -0300 (BRT) Received: from PEDELD011457.datacom.net (unknown [172.31.206.21]) by mail.datacom.ind.br (Postfix) with ESMTPSA id 772E114E0009; Thu, 28 Sep 2017 14:54:51 -0300 (BRT) From: Carlos Santos To: buildroot@buildroot.org Date: Thu, 28 Sep 2017 14:55:04 -0300 Message-Id: <1506621304-21108-1-git-send-email-casantos@datacom.ind.br> X-Mailer: git-send-email 2.7.5 Subject: [Buildroot] [PATCH] qemu: drop "--disable-uuid" configuration parameter X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" ./configure: --disable-uuid is obsolete, UUID support is always built Change-Id: I9e278418d19e15bbbd3ea233658cd62f75e3385c Signed-off-by: Carlos Santos --- package/qemu/qemu.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk index f02df8b..f42d649 100644 --- a/package/qemu/qemu.mk +++ b/package/qemu/qemu.mk @@ -238,7 +238,6 @@ define QEMU_CONFIGURE_CMDS --disable-curses \ --disable-curl \ --disable-bluez \ - --disable-uuid \ --disable-vde \ --disable-linux-aio \ --disable-cap-ng \