[Armadeus-commitlog] armadeus branch, master, updated. release-3.2-10-gf77c8f1
Brought to you by:
sszy
|
From: Fabien M <fa...@us...> - 2009-12-04 11:17:38
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via f77c8f1417d474e38a503819b801d74a1019048a (commit)
from cd50d2f1669b1fceba7cd4ff4f4240ed251177c2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f77c8f1417d474e38a503819b801d74a1019048a
Author: Fabien Marteau <fab...@ar...>
Date: Fri Dec 4 12:16:43 2009 +0100
[OTHER] quilt script messages update
-----------------------------------------------------------------------
Summary of changes:
scripts/quilt.sh | 17 ++++++++++++-----
1 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/scripts/quilt.sh b/scripts/quilt.sh
index 89a4e94..f61d9a8 100755
--- a/scripts/quilt.sh
+++ b/scripts/quilt.sh
@@ -25,11 +25,17 @@ ask_user()
make shell_env
. armadeus_env.sh
-ask_user "What do you want to quiltify today ? ;-)" "Linux (default)" "Buildroot"
+if [ "$1" != "export" ]; then
+ ask_user "What do you want to quiltify today ? ;-)" "Linux (default)" "Buildroot"
+fi
+if [ "$1" == "export" ]; then
+ ask_user "What kind of quilt patches do you want to export ?" "Linux (default)" "Buildroot"
+fi
+
if [ "$answer" == "2" ]; then
- QUILT_TARGET_NAME="Buildroot"
+ QUILT_TARGET_NAME="Buildroot"
QUILT_MAKEFILE_TARGET="buildroot-unpacked"
- QUILT_TARGET_DIR=$ARMADEUS_BUILDROOT_DIR
+ QUILT_TARGET_DIR=$ARMADEUS_BUILDROOT_DIR
QUILT_TARGET_PATCH_DIR=$ARMADEUS_BUILDROOT_DIR/../patches/buildroot
else
QUILT_TARGET_NAME="Linux kernel"
@@ -38,8 +44,9 @@ else
QUILT_TARGET_PATCH_DIR=$ARMADEUS_LINUX_PATCH_DIR
fi
-echo -e "\nThis script is going to rebuilt a quiltified "$QUILT_TARGET_NAME" in the current view..."
-
+if [ "$1" != "export" ]; then
+ echo -e "\nThis script is going to rebuilt a quiltified "$QUILT_TARGET_NAME" in the current view..."
+fi
if [ "$1" == "export" ]; then
echo "Exporting your work (patches) from $QUILT_TARGET_DIR/patches/ to $QUILT_TARGET_PATCH_DIR"
hooks/post-receive
--
armadeus
|