From patchwork Wed Jan 15 13:16:14 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 311126 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 74BBA2C008F for ; Thu, 16 Jan 2014 00:16:32 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 69F888BAC5; Wed, 15 Jan 2014 13:16:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lDAJLD4Uz0JH; Wed, 15 Jan 2014 13:16:30 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 2065A8BA91; Wed, 15 Jan 2014 13:16:30 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id BE5391C20E9 for ; Wed, 15 Jan 2014 13:16:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B9F848BA26 for ; Wed, 15 Jan 2014 13:16:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NkSJ7moEGnI9 for ; Wed, 15 Jan 2014 13:16:28 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id CAF5182D15 for ; Wed, 15 Jan 2014 13:16:27 +0000 (UTC) Received: from asgard (host16.181-1-248.telecom.net.ar [181.1.248.16]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id s0FDGKVS027673 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 15 Jan 2014 13:16:23 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1389791785; bh=cfffV3WQwY/NFfrIZwh1iXhpse0ooeJSaPaNuiGo0R8=; h=From:To:Cc:Subject:Date; b=p1W1WuYjOfWKMRONcr0KsVWGgqog+24EzJ4jWzYSKQs7VYPmgUGIBebowe6tOw+Fq WqZ5trWegfKkTFDUeLLLntYtVXLXMITB8Cxp4lecAJzG0glQ10YggPZX9oM+aBFpr1 GlSyBN4c3wTaIB3ep3iOJp9yQaD3+114J6UvqvSU= Received: by asgard (sSMTP sendmail emulation); Wed, 15 Jan 2014 10:16:14 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 15 Jan 2014 10:16:14 -0300 Message-Id: <1389791774-16354-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.3.2 X-Virus-Scanned: clamav-milter 0.98 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] busybox 1.22.0: add line edit patch X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net Signed-off-by: Gustavo Zacarias --- package/busybox/1.22.0/0005-busybox-1.22.0-lineedit.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 package/busybox/1.22.0/0005-busybox-1.22.0-lineedit.patch diff --git a/package/busybox/1.22.0/0005-busybox-1.22.0-lineedit.patch b/package/busybox/1.22.0/0005-busybox-1.22.0-lineedit.patch new file mode 100644 index 0000000..e414314 --- /dev/null +++ b/package/busybox/1.22.0/0005-busybox-1.22.0-lineedit.patch @@ -0,0 +1,12 @@ +--- busybox-1.22.0/libbb/lineedit.c ++++ busybox-1.22.0-lineedit/libbb/lineedit.c +@@ -1255,7 +1255,9 @@ line_input_t* FAST_FUNC new_line_input_t + { + line_input_t *n = xzalloc(sizeof(*n)); + n->flags = flags; ++#if MAX_HISTORY > 0 + n->max_history = MAX_HISTORY; ++#endif + return n; + } +