Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] PERFORCE change 78852 by Juuso Alasuutari for review

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Perforce Review Daemon <p4review AT smee.org>
  • To: "Andrew Stitt" <a AT t.armory.com>, "Arjan Bouter" <abouter AT sourcemage.org>, "SM-Commit Daemon" <sm-commit AT lists.ibiblio.org>, "duane_malcolm" <d.malcolm AT auckland.ac.nz>, "Ethan Grammatikidis" <eekee AT eekee.is-a-geek.org>, "Gareth Clay" <gareth AT caffeinefuelled.co.uk>, "Maurizio Boriani" <baux AT member.fsf.org>, "Pieter Lenaerts" <e-type AT sourcemage.org>, "Robin Cook" <rcook AT wyrms.net>, "Seth Woolley" <seth AT swoolley.homeip.net>, "Unet" <unet AT sourcemage.org>, "vladimir_marek" <vlmarek AT volny.cz>
  • Subject: [SM-Commit] PERFORCE change 78852 by Juuso Alasuutari for review
  • Date: Wed, 3 May 2006 03:45:00 +0100 (BST)

Change 78852 by juuso_alasuutari@juuso_alasuutari-kamayuq on 2006/05/03
03:41:45

A ton of new rules, some reorganization of old ones, a few
fixes.

Affected files ...

... //sgl/grimoires/test/disk/udev/50-default.rules#2 delete
... //sgl/grimoires/test/disk/udev/50-default.rules-hotplug#2 delete
... //sgl/grimoires/test/disk/udev/52-modules.rules#1 branch
... //sgl/grimoires/test/disk/udev/52-modules.rules-hotplug#1 branch
... //sgl/grimoires/test/disk/udev/DETAILS#43 integrate
... //sgl/grimoires/test/disk/udev/HISTORY#65 integrate
... //sgl/grimoires/test/disk/udev/INSTALL#23 integrate
... //sgl/grimoires/test/disk/udev/PRE_BUILD#6 integrate
... //sgl/grimoires/test/disk/udev/modprobe.aliases#1 branch
... //sgl/grimoires/test/disk/udev/rules/05-udev-early.rules#2 delete
... //sgl/grimoires/test/disk/udev/rules/50-default.rules#15 branch
... //sgl/grimoires/test/disk/udev/rules/README#2 integrate

Differences ...

==== //sgl/grimoires/test/disk/udev/DETAILS#43 (xtext) ====

@@ -10,7 +10,7 @@

WEB_SITE=http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html
ENTERED=20030725
UPDATED=20060107
- PATCHLEVEL=8
+ PATCHLEVEL=9
DOCS="ChangeLog COPYING FAQ README docs/* RELEASE-NOTES"
LICENSE[0]=GPL
KEYWORDS="disk"

==== //sgl/grimoires/test/disk/udev/HISTORY#65 (text) ====

@@ -1,3 +1,31 @@
+2006-05-02 Juuso Alasuutari <iuso AT sourcemage.org>
+ * INSTALL: Install early rules straight from source dir
+ * rules/05-udev-early.rules: Deleted
+ * rules/50-default.rules: Thiefed a ton of rules from gentoo
+ rules file, fixed some typos
+ * 52-modules.rules: Some edits
+
+2006-04-30 Juuso Alasuutari <iuso AT sourcemage.org>
+ * INSTALL: Install modprobe aliases for non-hotplug systems
+
+2006-04-29 Juuso Alasuutari <iuso AT sourcemage.org>
+ * PRE_BUILD: Add fix for upstream typo in alsa rules file
+
+2006-04-28 Juuso Alasuutari <iuso AT sourcemage.org>
+ * DETAILS: Updated PATCHLEVEL
+
+2006-04-28 Juuso Alasuutari <iuso AT sourcemage.org>
+ * 50-default.rules, 50-default.rules-hotplug: Deleted, see below
+ * rules/50-default.rules: Added, now the differences between
+ non-hotplug and hotplug systems are taken care of in
+ 52-modules.rules*
+ * 52-modules.rules, 52-modules.rules-hotplug: Added, different
+ module loading rules for non-hotplug and hotplug systems. Also
+ some new rules for non-hotplug, fixes e.g. SCSI driver
+ loading.
+ * INSTALL: Edited to install correct 52-modules.rules* file
+ * rules/README: Updated the text a bit
+
2006-04-27 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: Version 091


==== //sgl/grimoires/test/disk/udev/INSTALL#23 (xtext) ====

@@ -9,15 +9,23 @@
install_config_file $file ${UDEV_CFG}/rules.d/$(basename $file)
done &&

-# install diff default rules on hotplug and non-hotplug systems
+# install diff default rules on hotplug and non-hotplug systems, install
+# required modprobe aliases for non-hotplug rules
if spell_ok hotplug; then
- install_config_file $SCRIPT_DIRECTORY/50-default.rules-hotplug
${UDEV_CFG}/rules.d/50-default.rules
+ install_config_file $SCRIPT_DIRECTORY/52-modules.rules-hotplug
${UDEV_CFG}/rules.d/52-modules.rules
else
- install_config_file $SCRIPT_DIRECTORY/50-default.rules
${UDEV_CFG}/rules.d/50-default.rules
+ install_config_file $SCRIPT_DIRECTORY/52-modules.rules
${UDEV_CFG}/rules.d/52-modules.rules &&
+ mkdir -p $INSTALL_ROOT/etc/modprobe.d &&
+ install_config_file $SCRIPT_DIRECTORY/modprobe.aliases
$INSTALL_ROOT/etc/modprobe.d/udev
fi

+# install early rules
+install_config_file $SOURCE_DIRECTORY/etc/udev/05-udev-early.rules \
+ ${UDEV_CFG}/rules.d/05-udev-early.rules
+
# install alsa rules
-install_config_file etc/udev/suse/40-alsa.rules
${UDEV_CFG}/rules.d/40-alsa.rules
+install_config_file etc/udev/suse/40-alsa.rules \
+ ${UDEV_CFG}/rules.d/40-alsa.rules

# udevstart and udevsend are nolonger installed by default. we still need
them
install udevsend udevstart ${INSTALL_ROOT}/sbin &&

==== //sgl/grimoires/test/disk/udev/PRE_BUILD#6 (xtext) ====

@@ -2,6 +2,9 @@
cd $SOURCE_DIRECTORY &&
patch -p0 < $SCRIPT_DIRECTORY/Makefile.patch &&

+# Correct typo in alsa rules file
+sedit "s/^0$//" etc/udev/suse/40-alsa.rules
+
if [[ "$UDEV_STATIC" == 'y' ]]; then
message "${MESSAGE_COLOR}Setting up static build
directory...${DEFAULT_COLOR}" &&
mkdir __static__ &&

==== //sgl/grimoires/test/disk/udev/rules/README#2 (text) ====

@@ -6,4 +6,6 @@
When a rule matches in one file, a different rule in another file will be
ignored, so be sure to name your own files properly.

-Be sure to leave 50-default.rules as it is, so the spell can update it when
needed.
+Be sure to leave rules files installed by the spell as they are, so the
+spell can update them when needed. If you need to make changes, always
+add your own rules files when possible.



  • [SM-Commit] PERFORCE change 78852 by Juuso Alasuutari for review, Perforce Review Daemon, 05/02/2006

Archive powered by MHonArc 2.6.24.

Top of Page