]> code.ossystems Code Review - openembedded-core.git/commitdiff
rootfs_rpm.bbclass: Update database configuration file
authorMark Hatle <mark.hatle@windriver.com>
Mon, 11 Jun 2012 18:18:57 +0000 (13:18 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 12 Jun 2012 10:06:39 +0000 (11:06 +0100)
Move the creation of the database configuration files to just before we
perform the install actions.  This ensures they will exist even in SDK or
other non-target filesystem images.

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/package_rpm.bbclass
meta/classes/rootfs_rpm.bbclass

index 097fa1227a9b39d221dfc4a550fb4f9fe66a7bca..b84c0441b4c9e6eaba6d15d3e5515909a26f3ea3 100644 (file)
@@ -454,6 +454,38 @@ EOF
 
        chmod 0755 ${WORKDIR}/scriptlet_wrapper
 
+       # Configure RPM... we enforce these settings!
+       mkdir -p ${target_rootfs}${rpmlibdir}
+       mkdir -p ${target_rootfs}${rpmlibdir}/log
+       # After change the __db.* cache size, log file will not be generated automatically,
+       # that will raise some warnings, so touch a bare log for rpm write into it.
+       touch ${target_rootfs}${rpmlibdir}/log/log.0000000001
+       cat > ${target_rootfs}${rpmlibdir}/DB_CONFIG << EOF
+# ================ Environment
+set_data_dir .
+set_create_dir .
+set_lg_dir ./log
+set_tmp_dir ./tmp
+set_flags db_log_autoremove on
+
+# -- thread_count must be >= 8
+set_thread_count 64
+
+# ================ Logging
+
+# ================ Memory Pool
+set_cachesize 0 1048576 0
+set_mp_mmapsize 268435456
+
+# ================ Locking
+set_lk_max_locks 16384
+set_lk_max_lockers 16384
+set_lk_max_objects 16384
+mutex_set_max 163840
+
+# ================ Replication
+EOF
+
        # RPM is special. It can't handle dependencies and preinstall scripts correctly. Its
        # probably a feature. The only way to convince rpm to actually run the preinstall scripts 
        # for base-passwd and shadow first before installing packages that depend on these packages 
index eafb34bc3edab6c51e6c2715e6db46e3edc4e0a3..202f9ce5140e062f87e42f5f51c9ab316b0cfbb9 100644 (file)
@@ -59,37 +59,6 @@ fakeroot rootfs_rpm_do_rootfs () {
        # Setup base system configuration
        mkdir -p ${INSTALL_ROOTFS_RPM}/etc/rpm/
 
-       mkdir -p ${INSTALL_ROOTFS_RPM}${rpmlibdir}
-       mkdir -p ${INSTALL_ROOTFS_RPM}${rpmlibdir}/log
-       # After change the __db.* cache size, log file will not be generated automatically,
-       # that will raise some warnings, so touch a bare log for rpm write into it.
-       touch ${INSTALL_ROOTFS_RPM}${rpmlibdir}/log/log.0000000001
-       cat > ${INSTALL_ROOTFS_RPM}${rpmlibdir}/DB_CONFIG << EOF
-# ================ Environment
-set_data_dir .
-set_create_dir .
-set_lg_dir ./log
-set_tmp_dir ./tmp
-set_flags db_log_autoremove on
-
-# -- thread_count must be >= 8
-set_thread_count 64
-
-# ================ Logging
-
-# ================ Memory Pool
-set_cachesize 0 1048576 0
-set_mp_mmapsize 268435456
-
-# ================ Locking
-set_lk_max_locks 16384
-set_lk_max_lockers 16384
-set_lk_max_objects 16384
-mutex_set_max 163840
-
-# ================ Replication
-EOF
-
        # List must be prefered to least preferred order
        INSTALL_PLATFORM_EXTRA_RPM=""
        for each_arch in ${MULTILIB_PACKAGE_ARCHS} ${PACKAGE_ARCHS}; do