CVS: moonbase/kernel/linux/2.4.22-test_only CONFIGURE, 1.1,
1.2 DETAILS, 1.1, 1.2 PRE_BUILD, 1.1, 1.2
niki at lunar-linux.org
niki at lunar-linux.org
Tue Sep 16 16:36:44 GMT 2003
- Previous message: CVS: moonbase/kernel/linux/2.4.22-test_only BUILD, NONE,
1.1 CONFIGURE, NONE, 1.1 DEPENDS, NONE, 1.1 DETAILS, NONE,
1.1 POST_INSTALL, NONE, 1.1 PRE_BUILD, NONE, 1.1
- Next message: CVS: moonbase/kernel/linux/2.4.22-test_only DETAILS,1.2,1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/cvs/lunar/moonbase/kernel/linux/2.4.22-test_only
In directory dbguin.lunar-linux.org:/tmp/cvs-serv8892
Modified Files:
CONFIGURE DETAILS PRE_BUILD
Log Message:
Now ppl can run the kernel i currently run
Index: CONFIGURE
===================================================================
RCS file: /var/cvs/lunar/moonbase/kernel/linux/2.4.22-test_only/CONFIGURE,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CONFIGURE 16 Sep 2003 16:11:48 -0000 1.1
+++ CONFIGURE 16 Sep 2003 16:36:41 -0000 1.2
@@ -70,15 +70,18 @@
fi
fi
-CONFIG_AGGRESSIVE="n"
-
-if ! grep -q "CONFIG_AGGRESSIVE=" $MODULE_CONFIG &&
- query "Use Aggressive patchset?" n
-then CONFIG_AGGRESSIVE="y"
-else if grep -q "CONFIG_AGGRESSIVE=y" $MODULE_CONFIG
- then CONFIG_AGGRESSIVE="y"
- fi
-fi
+#
+# Diable aggressive as these patches hasn't been implemented yet.
+#
+#CONFIG_AGGRESSIVE="n"
+#
+#if ! grep -q "CONFIG_AGGRESSIVE=" $MODULE_CONFIG &&
+# query "Use Aggressive patchset?" n
+#then CONFIG_AGGRESSIVE="y"
+#else if grep -q "CONFIG_AGGRESSIVE=y" $MODULE_CONFIG
+# then CONFIG_AGGRESSIVE="y"
+# fi
+#fi
if ! grep -q "CONFIG_METHOD=" $MODULE_CONFIG
then
Index: DETAILS
===================================================================
RCS file: /var/cvs/lunar/moonbase/kernel/linux/2.4.22-test_only/DETAILS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- DETAILS 16 Sep 2003 16:11:48 -0000 1.1
+++ DETAILS 16 Sep 2003 16:36:41 -0000 1.2
@@ -1,55 +1,22 @@
MODULE=linux
- VERSION=2.4.20
- PATCHVERSION=r1.3
+ VERSION=2.4.22
+ PATCHVERSION=rc2.1.1
SOURCE=linux-$VERSION.tar.bz2
SOURCE2=$MODULE-$VERSION-lunar-patch-set-$PATCHVERSION.tar.bz2
SOURCE_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.4/$SOURCE
SOURCE_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.4/$SOURCE
SOURCE2_URL[0]=$PATCH_URL/$SOURCE2
- SOURCE_VFY=md5:c439d5c93d7fc9a1480a90842465bb97
- SOURCE2_VFY=md5:588c9dfa03283f6d3cb2ff6ccd44d117
+ SOURCE_VFY=md5:75dc85149b06ac9432106b8941eb9f7b
+ SOURCE2_VFY=md5:186ccf3cfdece5a3b097ac499ad17289
WEBSITE=http://www.kernel.org
- ENTERED=20020818
- UPDATED=20030818
+ ENTERED=20020916
+ UPDATED=20030916
KEEP_SOURCE="on"
- SHORT="The Linux kernel, the core of the GNU/Linux OS, with the lunar patch set"
+ SHORT="The Lunar Kernel patchset test module."
cat << EOF
-The lunar patch set enables the sysadmin to add some desirable features like:
-
-XFS support (enabled by default)
-fixes APM SMP crashes
-ipconntack.h
-P3m-cache
-pcmcia-smc91c92_cs
-adds cpuid entries amd msr entries
-devfs-zip
-rivafb
-rpc-accounting-nfs
-smp-race-nfs
-radeon FB fixes
-scsi-in2000
-scsi-t128
-ide-driver-null
-getcwd-err
-mmap
-ext3 fixes
-paraport-serial-pci
-titan-serial
-VIA chipset vt8235 fixes
-xfs-sysctl
-firewire patch
-pdc202xx
-3c574_cs
-ptrace patch
-ipv4 routing hash patch
-
-The aggressive patch set adds:
+WARNING: This is a kernel module for test purpose only...
-adds gcc 3.1 machine types to the kernel
-swab64
-preemptible kernel support
-low-latency
+This is the Linux kernel with the Lunar Linux kernel patch set.
-Features are enabled or disabled by the standard kernel configuration tools,
-i.e. "make menuconfig" or "make config" or "make xconfig".
+For patch information please see the patch-list.txt file in the patchset.
EOF
Index: PRE_BUILD
===================================================================
RCS file: /var/cvs/lunar/moonbase/kernel/linux/2.4.22-test_only/PRE_BUILD,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- PRE_BUILD 16 Sep 2003 16:11:48 -0000 1.1
+++ PRE_BUILD 16 Sep 2003 16:36:41 -0000 1.2
@@ -14,21 +14,38 @@
mkdir patches
bzcat $SOURCE_CACHE/$SOURCE2 | tar -xf - -C patches
-if [ "`arch`" == "alpha" ]; then
- patch -p1 < patches/alpha/00_alpha-cia.patch
-fi
+#
+# This is not needed any more as it has been fixed in the kernel.
+#
+#if [ "`arch`" == "alpha" ]; then
+# patch -p1 < patches/alpha/00_alpha-cia.patch
+#fi
+#
+# Patch in main feature enhancements
+#
for pat in patches/main/*
do
patch -p1 < $pat
done
-if [ "$CONFIG_AGGRESSIVE" == "y" ]; then
- for pat in patches/aggressive/*
- do
- patch -p1 < $pat
- done
-fi
+#
+# Patch in kernel fixes
+#
+for pat in patches/fix/*
+do
+ patch -p1 < $pat
+done
+
+#
+# Disables aggressive patches as they have not been incorpurated yet.
+#
+#if [ "$CONFIG_AGGRESSIVE" == "y" ]; then
+# for pat in patches/aggressive/*
+# do
+# patch -p1 < $pat
+# done
+#fi
rm -rf patches
chown -R root:root /usr/src/linux-$VERSION
- Previous message: CVS: moonbase/kernel/linux/2.4.22-test_only BUILD, NONE,
1.1 CONFIGURE, NONE, 1.1 DEPENDS, NONE, 1.1 DETAILS, NONE,
1.1 POST_INSTALL, NONE, 1.1 PRE_BUILD, NONE, 1.1
- Next message: CVS: moonbase/kernel/linux/2.4.22-test_only DETAILS,1.2,1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Lunar-commits
mailing list