public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
From: git@ipfire.org
To: ipfire-scm@lists.ipfire.org
Subject: [git.ipfire.org] IPFire 3.x development tree branch, master, updated. 234f0305ba31ae499714193c594279aabe3f9ca4
Date: Wed, 22 Aug 2012 10:12:30 +0200	[thread overview]
Message-ID: <20120822081231.49FB220082@argus.ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 7235 bytes --]

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 "IPFire 3.x development tree".

The branch, master has been updated
       via  234f0305ba31ae499714193c594279aabe3f9ca4 (commit)
       via  c4ef5c452c2ced3cae3c1bda3bc9284385197088 (commit)
      from  76eb1f9c86ba8675af5484c0225d565f563dad9c (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 234f0305ba31ae499714193c594279aabe3f9ca4
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date:   Wed Aug 22 10:11:04 2012 +0200

    grep: Update to 2.14.
    
    Fixes #10213.

commit c4ef5c452c2ced3cae3c1bda3bc9284385197088
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date:   Wed Aug 22 09:54:16 2012 +0200

    kernel: Move modules to /usr/lib.

-----------------------------------------------------------------------

Summary of changes:
 grep/grep.nm     |    2 +-
 kernel/kernel.nm |   60 +++++++++++++++++++++++++++---------------------------
 2 files changed, 31 insertions(+), 31 deletions(-)

Difference in files:
diff --git a/grep/grep.nm b/grep/grep.nm
index a41eaf7..983dc7b 100644
--- a/grep/grep.nm
+++ b/grep/grep.nm
@@ -4,7 +4,7 @@
 ###############################################################################
 
 name       = grep
-version    = 2.13
+version    = 2.14
 release    = 1
 
 groups     = Applications/Text
diff --git a/kernel/kernel.nm b/kernel/kernel.nm
index 41ccf8e..fb5813c 100644
--- a/kernel/kernel.nm
+++ b/kernel/kernel.nm
@@ -5,7 +5,7 @@
 
 name       = kernel
 version    = 3.5.1
-release    = 0.3
+release    = 0.4
 thisapp    = linux-%{version}
 
 maintainer = Michael Tremer <michael.tremer(a)ipfire.org>
@@ -215,7 +215,7 @@ build
 				%{kernel_build_flags} %{PARALLELISMFLAGS}
 
 			# Install the results.
-			mkdir -pv %{BUILDROOT}/boot %{BUILDROOT}/lib/modules/${fullversion}
+			mkdir -pv %{BUILDROOT}/boot %{BUILDROOT}/usr/lib/modules/${fullversion}
 			install -m 755 %{kernel_image} %{BUILDROOT}/boot/vmlinuz-${fullversion}
 			install -m 644 .config %{BUILDROOT}/boot/config-${fullversion}
 			install -m 644 System.map %{BUILDROOT}/boot/System.map-${fullversion}
@@ -224,7 +224,7 @@ build
 			dd if=/dev/zero of=%{BUILDROOT}/boot/initramfs-${fullversion}.img bs=1M count=20
 
 			# Install modules.
-			make ARCH=%{kernel_arch} INSTALL_MOD_PATH=%{BUILDROOT} mod-fw= \
+			make ARCH=%{kernel_arch} INSTALL_MOD_PATH=%{BUILDROOT}/usr mod-fw= \
 				KERNELRELEASE=${fullversion} modules_install
 
 			# Install vdso.
@@ -243,45 +243,45 @@ build
 			# And now the scary looking part.
 			#
 			# Recreate source and build links.
-			rm -vf %{BUILDROOT}/lib/modules/${fullversion}/{build,source}
-			mkdir -pv %{BUILDROOT}/lib/modules/${fullversion}/build
-			ln -svf build %{BUILDROOT}/lib/modules/${fullversion}/source
+			rm -vf %{BUILDROOT}/usr/lib/modules/${fullversion}/{build,source}
+			mkdir -pv %{BUILDROOT}/usr/lib/modules/${fullversion}/build
+			ln -svf build %{BUILDROOT}/usr/lib/modules/${fullversion}/source
 
 			# Create dirs for extra modules.
-			mkdir -pv %{BUILDROOT}/lib/modules/${fullversion}/extra
+			mkdir -pv %{BUILDROOT}/usr/lib/modules/${fullversion}/extra
 
 			cp -v --parents $(find -type f -name "Makefile*" -o -name "Kconfig*") \
-				%{BUILDROOT}/lib/modules/${fullversion}/build
+				%{BUILDROOT}/usr/lib/modules/${fullversion}/build
 			cp -v Module.symvers System.map \
-				%{BUILDROOT}/lib/modules/${fullversion}/build
-			rm -vrf %{BUILDROOT}/lib/modules/${fullversion}/build/{Documentation,scripts,include}
+				%{BUILDROOT}/usr/lib/modules/${fullversion}/build
+			rm -vrf %{BUILDROOT}/usr/lib/modules/${fullversion}/build/{Documentation,scripts,include}
 
-			cp -v .config %{BUILDROOT}/lib/modules/${fullversion}/build
-			cp -va scripts %{BUILDROOT}/lib/modules/${fullversion}/build
-			find %{BUILDROOT}/lib/modules/${fullversion}/build/scripts -name "*.o" \
+			cp -v .config %{BUILDROOT}/usr/lib/modules/${fullversion}/build
+			cp -va scripts %{BUILDROOT}/usr/lib/modules/${fullversion}/build
+			find %{BUILDROOT}/usr/lib/modules/${fullversion}/build/scripts -name "*.o" \
 				-exec rm -vf {} \;
 
 			cp -va --parents arch/%{kernel_arch}/include \
-				%{BUILDROOT}/lib/modules/${fullversion}/build
-			cp -va include %{BUILDROOT}/lib/modules/${fullversion}/build/include
+				%{BUILDROOT}/usr/lib/modules/${fullversion}/build
+			cp -va include %{BUILDROOT}/usr/lib/modules/${fullversion}/build/include
 
 			# Make sure we can build external modules.
-			touch -r %{BUILDROOT}/lib/modules/${fullversion}/build/Makefile \
-				%{BUILDROOT}/lib/modules/${fullversion}/build/include/linux/version.h
-			touch -r %{BUILDROOT}/lib/modules/${fullversion}/build/.config \
-				%{BUILDROOT}/lib/modules/${fullversion}/build/autoconf.h
-			cp -v %{BUILDROOT}/lib/modules/${fullversion}/build/.config \
-				%{BUILDROOT}/lib/modules/${fullversion}/build/include/config/auto.conf
-
-			find %{BUILDROOT}/lib/modules/${fullversion} -name "*.ko" -type f | \
+			touch -r %{BUILDROOT}/usr/lib/modules/${fullversion}/build/Makefile \
+				%{BUILDROOT}/usr/lib/modules/${fullversion}/build/include/linux/version.h
+			touch -r %{BUILDROOT}/usr/lib/modules/${fullversion}/build/.config \
+				%{BUILDROOT}/usr/lib/modules/${fullversion}/build/autoconf.h
+			cp -v %{BUILDROOT}/usr/lib/modules/${fullversion}/build/.config \
+				%{BUILDROOT}/usr/lib/modules/${fullversion}/build/include/config/auto.conf
+
+			find %{BUILDROOT}/usr/lib/modules/${fullversion} -name "*.ko" -type f | \
 				xargs chmod u+x
 
 			# Move all development files to /usr/src.
 			mkdir -pv %{BUILDROOT}/usr/src/kernels
-			mv -v %{BUILDROOT}/lib/modules/${fullversion}/build \
+			mv -v %{BUILDROOT}/usr/lib/modules/${fullversion}/build \
 				%{BUILDROOT}/usr/src/kernels/${fullversion}
-			ln -svf ../../../usr/src/kernels/${fullversion} \
-				%{BUILDROOT}/lib/modules/${fullversion}/build
+			ln -svf ../../../src/kernels/${fullversion} \
+				%{BUILDROOT}/usr/lib/modules/${fullversion}/build
 
 			find %{BUILDROOT}/usr/src/kernels -name ".*.cmd" -exec rm -f {} \;
 		}
@@ -366,7 +366,7 @@ packages
 			/boot/vmlinuz-%{kernel_release}
 			/boot/initramfs-%{kernel_release}.img
 			/etc/ld.so.conf.d/kernel-%{kernel_release}.conf
-			/lib/modules/%{kernel_release}
+			/usr/lib/modules/%{kernel_release}
 		end
 
 		_posttrans
@@ -411,8 +411,8 @@ packages
 		end
 
 		files
-			/lib/modules/%{kernel_release}/build
-			/lib/modules/%{kernel_release}/source
+			/usr/lib/modules/%{kernel_release}/build
+			/usr/lib/modules/%{kernel_release}/source
 			/usr/src/kernels/%{kernel_release}
 		end
 	end
@@ -501,8 +501,8 @@ packages
 		files
 			/
 			!/boot
-			!/lib/modules
 			!/usr/include
+			!/usr/lib/modules
 			!/usr/src
 			!/usr/src/debug
 			!/usr/lib/debug


hooks/post-receive
--
IPFire 3.x development tree

                 reply	other threads:[~2012-08-22  8:12 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120822081231.49FB220082@argus.ipfire.org \
    --to=git@ipfire.org \
    --cc=ipfire-scm@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox