From patchwork Tue Feb 24 22:45:22 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Warren X-Patchwork-Id: 443249 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 A985814007D for ; Wed, 25 Feb 2015 09:44:51 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752284AbbBXWot (ORCPT ); Tue, 24 Feb 2015 17:44:49 -0500 Received: from avon.wwwdotorg.org ([70.85.31.133]:36571 "EHLO avon.wwwdotorg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751973AbbBXWot (ORCPT ); Tue, 24 Feb 2015 17:44:49 -0500 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 B470E63F8; Tue, 24 Feb 2015 15:44:48 -0700 (MST) 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 0A4ADE40CD; Tue, 24 Feb 2015 15:44:47 -0700 (MST) From: Stephen Warren To: linux-tegra@vger.kernel.org Cc: Stephen Warren Subject: [flasher scripts PATCH] Add a README file Date: Tue, 24 Feb 2015 15:45:22 -0700 Message-Id: <1424817922-26230-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.1 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 A plain README.txt is a more commit name for a README file than the existing README-*.txt files. This will help direct users to the correct file they need to read. Also add a section describing how/where to send patches, etc. Signed-off-by: Stephen Warren --- README-developer.txt | 22 ++++++++++++++++++++++ README.txt | 9 +++++++++ 2 files changed, 31 insertions(+) create mode 100644 README.txt diff --git a/README-developer.txt b/README-developer.txt index e2648c39f796..4372d644b7e5 100644 --- a/README-developer.txt +++ b/README-developer.txt @@ -62,6 +62,28 @@ repo init -u ... -g default,-notools # Only include the bare minimum repo init -u ... -g default,-notools,-bootloader +Submitting Changes +================== + +To submit patches to this project, please use the following commands: + +* git format-patch --subject-prefix="flasher scripts PATCH" + + Creates a patch file from your git commit. + +* git send-email --to linux-tegra@vger.kernel.org *.patch + + Sends the patch by email to the Tegra mailing list. + +Even though the primary upstream repository for this project is hosted on +github, contributions aren't accepted via github pull requests. Github pull +requests would bypass public code review on the project mailing list. + +Patches should be signed off (include a signed-off-by line) to indicate your +acceptance of the code's license (see COPYING and the license header in each +file). See http://developercertificate.org/ for details of what signed-off-by +implies. + Pre-requisites ============== diff --git a/README.txt b/README.txt new file mode 100644 index 000000000000..3bba5c2b9042 --- /dev/null +++ b/README.txt @@ -0,0 +1,9 @@ +Introduction +============ + +If you want to download the source to this tool and compile it, or submit +changes to this tool, see README-developer.txt. + +If you want to use this tool either after having compiled it yourself, or +after having received a pre-compiled version from someone else (e.g. a +distribution packager), see README-user.txt