From patchwork Fri Oct 16 16:57:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Warren X-Patchwork-Id: 531483 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id A5AA31402B9 for ; Sat, 17 Oct 2015 03:57:04 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932621AbbJPQ5D (ORCPT ); Fri, 16 Oct 2015 12:57:03 -0400 Received: from avon.wwwdotorg.org ([70.85.31.133]:56498 "EHLO avon.wwwdotorg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932263AbbJPQ5C (ORCPT ); Fri, 16 Oct 2015 12:57:02 -0400 Received: from severn.wwwdotorg.org (unknown [192.168.65.5]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by avon.wwwdotorg.org (Postfix) with ESMTPS id 10A1D625D; Fri, 16 Oct 2015 10:56:56 -0600 (MDT) Received: from swarren-lx1.nvidia.com (localhost [127.0.0.1]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by severn.wwwdotorg.org (Postfix) with ESMTPSA id 65127E4107; Fri, 16 Oct 2015 10:56:59 -0600 (MDT) From: Stephen Warren To: Stephen Warren Cc: Allen Martin , linux-tegra@vger.kernel.org Subject: [tegrarcm PATCH] Release version 1.7 Date: Fri, 16 Oct 2015 10:57:20 -0600 Message-Id: <1445014640-1206-1-git-send-email-swarren@wwwdotorg.org> X-Mailer: git-send-email 1.9.1 X-NVConfidentiality: public X-Virus-Scanned: clamav-milter 0.98.6 at avon.wwwdotorg.org X-Virus-Status: Clean Sender: linux-tegra-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-tegra@vger.kernel.org From: Stephen Warren Changelog: - Documented patch submission process in this file - Added better USB debugging message - Require a specific minimum version of libusb - Added --usb-port-path cmdline option Signed-off-by: Stephen Warren --- README | 4 ++++ configure.ac | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README b/README index 2c6765387a3f..8ace10ce0440 100644 --- a/README +++ b/README @@ -83,6 +83,10 @@ Changelog Ssee git logs for complete list. +V1.7 - Documented patch submission process in this file + - Added better USB debugging message + - Require a specific minimum version of libusb + - Added --usb-port-path cmdline option V1.6 - Added support for ODM secure mode V1.5 - Added support for RCM protocol version 40 - Added Tegra124 support diff --git a/configure.ac b/configure.ac index 51ac73d95896..943654fd623d 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.67]) -AC_INIT([tegrarcm], [1.6], [amartin@nvidia.com]) +AC_INIT([tegrarcm], [1.7], [amartin@nvidia.com]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_HEADERS([config.h])