From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Sun, 19 Jul 2020 13:49:45 -0700 Subject: [RFC PATCH 05/16] patman: Allow skipping patches at the end In-Reply-To: <20200706034203.2171077-6-sjg@chromium.org> References: <20200706034203.2171077-6-sjg@chromium.org> <20200706034203.2171077-1-sjg@chromium.org> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The -s option allows skipping patches at the top of the branch. Sometimes there are commits at the bottom that need to be skipped. At present it is necessary to count the number of commits and then use -c to tell patman how many to process. Add a -e option to easily skip a number of commits at the bottom of the branch. Signed-off-by: Simon Glass --- tools/patman/control.py | 8 +++++--- tools/patman/func_test.py | 13 +++++++++++-- tools/patman/main.py | 2 ++ 3 files changed, 18 insertions(+), 5 deletions(-) Applied to u-boot-dm