[arch-releng] [PATCH 2/2] [archiso2dual] Add support split-out any from core-pkgs.sqfs

Gerardo Exequiel Pozzi vmlinuz386 at yahoo.com.ar
Fri Jul 2 19:33:52 EDT 2010


Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386 at yahoo.com.ar>
---
 archiso2dual/archiso2dual |   20 ++++++++++++++++++++
 archiso2dual/isomounts    |    2 ++
 2 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/archiso2dual/archiso2dual b/archiso2dual/archiso2dual
index 0cc58af..0654602 100755
--- a/archiso2dual/archiso2dual
+++ b/archiso2dual/archiso2dual
@@ -132,6 +132,24 @@ libmodules_make_image() {
     done
 }
 
+core_pkgs_make_image() {
+    echo "Executing: ${FUNCNAME}"
+    mkdir -p ${work_dir}/tmp/any/core-any-pkgs/src/core/pkg
+    cp -a ${work_dir}/tmp/i686/core-pkgs/src/core/pkg/*-any.pkg.* ${work_dir}/tmp/any/core-any-pkgs/src/core/pkg
+    for _arch in i686 x86_64; do
+        rm -rf ${work_dir}/tmp/${_arch}/core-pkgs/src/core/pkg/*-any.pkg.*
+        mksquashfs_image core-pkgs ${_arch}
+    done
+    mksquashfs_image core-any-pkgs any
+}
+
+core_pkgs_extract() {
+    echo "Executing: ${FUNCNAME}"
+    for _arch in i686 x86_64; do
+        unsquashfs_image core-pkgs ${_arch}
+    done
+}
+
 root_image_extract() {
     echo "Executing: ${FUNCNAME}"
     for _arch in i686 x86_64; do
@@ -353,8 +371,10 @@ if [ ${profile_type} = "full" ] || [ ${profile_type} = "split" ]; then
     if [ ${profile_type} = "full" ]; then
         root_image_purge
     fi
+    core_pkgs_extract
     usrshare_make_image
     libmodules_make_image
     root_image_make_image
+    core_pkgs_make_image
 fi
 make_iso
diff --git a/archiso2dual/isomounts b/archiso2dual/isomounts
index 3cc5a05..ead8067 100644
--- a/archiso2dual/isomounts
+++ b/archiso2dual/isomounts
@@ -1,5 +1,7 @@
 i686/overlay.sqfs i686 / squashfs
 x86_64/overlay.sqfs x86_64 / squashfs
+any/core-any-pkgs.sqfs i686 / squashfs
+any/core-any-pkgs.sqfs x86_64 / squashfs
 i686/core-pkgs.sqfs i686 / squashfs
 x86_64/core-pkgs.sqfs x86_64 / squashfs
 any/usrshare.sqfs i686 / squashfs
-- 
1.7.1.1




More information about the arch-releng mailing list