Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by David Brown (635827683f9cb74390d55d9248e2b39c67a6606e)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Brown <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by David Brown (635827683f9cb74390d55d9248e2b39c67a6606e)
  • Date: Fri, 18 Aug 2006 16:08:47 -0500

GIT changes to master grimoire by David Brown <dmlb2000 AT gmail.com>:

kernels/linux/BUILD | 6 +++++-
kernels/linux/HISTORY | 2 ++
kernels/linux/INSTALL | 5 +++++
3 files changed, 12 insertions(+), 1 deletion(-)

New commits:
commit 635827683f9cb74390d55d9248e2b39c67a6606e
Author: David Brown <dmlb2000 AT gmail.com>
Commit: David Brown <dmlb2000 AT gmail.com>

linux fixed bug 10685

diff --git a/kernels/linux/BUILD b/kernels/linux/BUILD
index dfcb1d8..ad2e297 100755
--- a/kernels/linux/BUILD
+++ b/kernels/linux/BUILD
@@ -31,7 +31,11 @@ if [[ -z "$INTERNAL_ISO_VAR" ]] ; then
echo "There is no kernel version: $VERSION" &&
return 1
;;
- esac
+ esac &&
+ if grep -q CONFIG_BONDING=m ./.config || grep -q CONFIG_BONDING=y ./.config
+ then
+ gcc -Wall -O -I/usr/src/linux/include
./Documentation/networking/ifenslave.c -o ifenslave
+ fi
else
# This is for the iso team don't touch
make scripts/ &&
diff --git a/kernels/linux/HISTORY b/kernels/linux/HISTORY
index cfc4277..1b72332 100644
--- a/kernels/linux/HISTORY
+++ b/kernels/linux/HISTORY
@@ -1,6 +1,8 @@
2006-08-18 David Brown <dmlb2000 AT gmail.com>
* PREPARE: make it rm -f the depends makefile so that it doesn't spit
out an error if it's not there (bug #9733)
+ * BUILD: added building of ifenslave
+ * INSTALL: added installing of ifenslave (bug #10685)

2006-08-18 David Brown <dmlb2000 AT gmail.com>
* latest.defaults: updated latest to patch-2.6.17.9
diff --git a/kernels/linux/INSTALL b/kernels/linux/INSTALL
index 4d54c03..2cded33 100755
--- a/kernels/linux/INSTALL
+++ b/kernels/linux/INSTALL
@@ -35,6 +35,11 @@ if [[ -z "$INTERNAL_ISO_VAR" ]] ; then
${INSTALL_ROOT}/boot/vmlinuz
;;
esac &&
+ if [[ -f ./ifenslave ]]
+ then
+ cp -av ./ifenslave ${INSTALL_ROOT}/sbin/ifenslave-$VERSION
+ ln -s ifenslave-$VERSION ${INSTALL_ROOT}/sbin/ifenslave
+ fi &&
message "${MESSAGE_COLOR}Copying and linking
System.map${DEFAULT_COLOR}" &&
cp ${LINUX_SOURCE_DIRECTORY}/System.map
${INSTALL_ROOT}/boot/System.map-${VERSION} &&
ln -sf System.map-${VERSION} \



  • [SM-Commit] GIT changes to master grimoire by David Brown (635827683f9cb74390d55d9248e2b39c67a6606e), David Brown, 08/18/2006

Archive powered by MHonArc 2.6.24.

Top of Page