]> spindle.queued.net Git - xodist/commitdiff
debxo: drop apt hack to work around jffs2's lack of mmap
authorAndres Salomon <dilinger@queued.net>
Fri, 19 Nov 2010 22:04:48 +0000 (14:04 -0800)
committerAndres Salomon <dilinger@queued.net>
Fri, 19 Nov 2010 22:09:32 +0000 (14:09 -0800)
We're no longer bothering to build jffs2 images; drop the jffs2
hacks.

Signed-off-by: Andres Salomon <dilinger@queued.net>
18 files changed:
configs/debxo-awesome/fstab-ext3
configs/debxo-awesome/fstab-ubifs
configs/debxo-awesome/hooks
configs/debxo-gnome/fstab-ext3
configs/debxo-gnome/fstab-ubifs
configs/debxo-gnome/hooks
configs/debxo-kde/fstab-ext3
configs/debxo-kde/fstab-ubifs
configs/debxo-kde/hooks
configs/debxo-lxde/fstab-ext3
configs/debxo-lxde/fstab-ubifs
configs/debxo-lxde/hooks
configs/debxo-sugar/fstab-ext3
configs/debxo-sugar/fstab-ubifs
configs/debxo-sugar/hooks
configs/debxo-xfce/fstab-ext3
configs/debxo-xfce/fstab-ubifs
configs/debxo-xfce/hooks

index 3f232bec98c4e54ada380366da86169aa1443d66..cfa7c1fb65fcd3433d56bcbaae9a6173e692bd72 100644 (file)
@@ -3,4 +3,3 @@
 # <file system>        <mount point>   <type>  <options>       <dump>  <pass>
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 LABEL=DebXO    /               ext3    errors=remount-ro 0     1       # 1024
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 052a5d51f1f98a7c168e7cc2545d49badecee9e6..dd3a20dfb16efd81466c9b57a6a9bdefa97b2096 100644 (file)
@@ -4,4 +4,3 @@
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 mtd:boot       /boot           jffs2   defaults,noatime 1      1       # 50
 ubi:root       /               ubifs   defaults,noatime 1      1
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 3d8ed1a8f555ae090007fd279c86218cf03fcdd6..c207995d8bf58278788b24e18bce527ce846c500 100644 (file)
@@ -26,21 +26,10 @@ customize_chroot_hook()
        # OFW needs this to boot w/ partitions
        ln -s . ${ROOT_DIR}/boot/boot
        
-       # Apt can't deal w/ jffs2's lack of mmap, so we keep apt's cache on tmpfs
-       # (see <http://bugs.debian.org/314334>).
-       mkdir ${ROOT_DIR}/var/cache/apt/cache
-       mount -t tmpfs tmpfs ${ROOT_DIR}/var/cache/apt/cache
-       # XOs are slow and small; don't use pdiffs, don't install recommends, and
-       # work around lack of mmap.
+       # XOs are slow and small; don't use pdiffs and don't install recommends
 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
 Acquire::Pdiffs "false";
 APT::Install-Recommends "false";
-Dir {
-       Cache "var/cache/apt/" {
-               srcpkgcache "cache/srcpkgcache.bin";
-               pkgcache "cache/pkgcache.bin";
-       };
-};
 EOF
 }
 
@@ -102,6 +91,4 @@ cleanup_chroot_hook()
        # Any customizations that need to be made after the chroot creation is
        # complete should be put here.  $ROOT_DIR should be prefixed to any
        # paths.
-
-       umount ${ROOT_DIR}/var/cache/apt/cache
 }
index 3f232bec98c4e54ada380366da86169aa1443d66..cfa7c1fb65fcd3433d56bcbaae9a6173e692bd72 100644 (file)
@@ -3,4 +3,3 @@
 # <file system>        <mount point>   <type>  <options>       <dump>  <pass>
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 LABEL=DebXO    /               ext3    errors=remount-ro 0     1       # 1024
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 052a5d51f1f98a7c168e7cc2545d49badecee9e6..dd3a20dfb16efd81466c9b57a6a9bdefa97b2096 100644 (file)
@@ -4,4 +4,3 @@
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 mtd:boot       /boot           jffs2   defaults,noatime 1      1       # 50
 ubi:root       /               ubifs   defaults,noatime 1      1
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 4c1b4bb417693795ee7e90bf456cbff92b0251b5..c3eb6defe52cefa9dd21171e22b9ec91ba8dc397 100644 (file)
@@ -27,21 +27,10 @@ customize_chroot_hook()
        # OFW needs this to boot w/ partitions
        ln -s . ${ROOT_DIR}/boot/boot
        
-       # Apt can't deal w/ jffs2's lack of mmap, so we keep apt's cache on tmpfs
-       # (see <http://bugs.debian.org/314334>).
-       mkdir ${ROOT_DIR}/var/cache/apt/cache
-       mount -t tmpfs tmpfs ${ROOT_DIR}/var/cache/apt/cache
-       # XOs are slow and small; don't use pdiffs, don't install recommends, and
-       # work around lack of mmap.
+       # XOs are slow and small; don't use pdiffs and don't install recommends
 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
 Acquire::Pdiffs "false";
 APT::Install-Recommends "false";
-Dir {
-       Cache "var/cache/apt/" {
-               srcpkgcache "cache/srcpkgcache.bin";
-               pkgcache "cache/pkgcache.bin";
-       };
-};
 EOF
 }
 
@@ -111,6 +100,4 @@ cleanup_chroot_hook()
        # Any customizations that need to be made after the chroot creation is
        # complete should be put here.  $ROOT_DIR should be prefixed to any
        # paths.
-
-       umount ${ROOT_DIR}/var/cache/apt/cache
 }
index 3f232bec98c4e54ada380366da86169aa1443d66..cfa7c1fb65fcd3433d56bcbaae9a6173e692bd72 100644 (file)
@@ -3,4 +3,3 @@
 # <file system>        <mount point>   <type>  <options>       <dump>  <pass>
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 LABEL=DebXO    /               ext3    errors=remount-ro 0     1       # 1024
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 052a5d51f1f98a7c168e7cc2545d49badecee9e6..dd3a20dfb16efd81466c9b57a6a9bdefa97b2096 100644 (file)
@@ -4,4 +4,3 @@
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 mtd:boot       /boot           jffs2   defaults,noatime 1      1       # 50
 ubi:root       /               ubifs   defaults,noatime 1      1
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 527126ad6e2165db639df092a93549c9b517a63c..16c0f70958d7cf0cebf5d3972a635c3b7be4efdf 100644 (file)
@@ -26,21 +26,10 @@ customize_chroot_hook()
        # OFW needs this to boot w/ partitions
        ln -s . ${ROOT_DIR}/boot/boot
 
-       # Apt can't deal w/ jffs2's lack of mmap, so we keep apt's cache on tmpfs
-       # (see <http://bugs.debian.org/314334>).
-       mkdir ${ROOT_DIR}/var/cache/apt/cache
-       mount -t tmpfs tmpfs ${ROOT_DIR}/var/cache/apt/cache
-       # XOs are slow and small; don't use pdiffs, don't install recommends, and
-       # work around lack of mmap.
+       # XOs are slow and small; don't use pdiffs and don't install recommends
 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
 Acquire::Pdiffs "false";
 APT::Install-Recommends "false";
-Dir {
-       Cache "var/cache/apt/" {
-               srcpkgcache "cache/srcpkgcache.bin";
-               pkgcache "cache/pkgcache.bin";
-       };
-};
 EOF
 }
 
@@ -100,6 +89,4 @@ cleanup_chroot_hook()
        # Any customizations that need to be made after the chroot creation is
        # complete should be put here.  $ROOT_DIR should be prefixed to any
        # paths.
-
-       umount ${ROOT_DIR}/var/cache/apt/cache
 }
index 3f232bec98c4e54ada380366da86169aa1443d66..cfa7c1fb65fcd3433d56bcbaae9a6173e692bd72 100644 (file)
@@ -3,4 +3,3 @@
 # <file system>        <mount point>   <type>  <options>       <dump>  <pass>
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 LABEL=DebXO    /               ext3    errors=remount-ro 0     1       # 1024
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 052a5d51f1f98a7c168e7cc2545d49badecee9e6..dd3a20dfb16efd81466c9b57a6a9bdefa97b2096 100644 (file)
@@ -4,4 +4,3 @@
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 mtd:boot       /boot           jffs2   defaults,noatime 1      1       # 50
 ubi:root       /               ubifs   defaults,noatime 1      1
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index e2337409f0149de094649e9911f1064b8feaf080..371fc8e2ca25e18cc72f007030f27ddcca3dca04 100644 (file)
@@ -26,21 +26,10 @@ customize_chroot_hook()
        # OFW needs this to boot w/ partitions
        ln -s . ${ROOT_DIR}/boot/boot
        
-       # Apt can't deal w/ jffs2's lack of mmap, so we keep apt's cache on tmpfs
-       # (see <http://bugs.debian.org/314334>).
-       mkdir ${ROOT_DIR}/var/cache/apt/cache
-       mount -t tmpfs tmpfs ${ROOT_DIR}/var/cache/apt/cache
-       # XOs are slow and small; don't use pdiffs, don't install recommends, and
-       # work around lack of mmap.
+       # XOs are slow and small; don't use pdiffs and don't install recommends
 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
 Acquire::Pdiffs "false";
 APT::Install-Recommends "false";
-Dir {
-       Cache "var/cache/apt/" {
-               srcpkgcache "cache/srcpkgcache.bin";
-               pkgcache "cache/pkgcache.bin";
-       };
-};
 EOF
 }
 
@@ -102,6 +91,4 @@ cleanup_chroot_hook()
        # Any customizations that need to be made after the chroot creation is
        # complete should be put here.  $ROOT_DIR should be prefixed to any
        # paths.
-
-       umount ${ROOT_DIR}/var/cache/apt/cache
 }
index 3f232bec98c4e54ada380366da86169aa1443d66..cfa7c1fb65fcd3433d56bcbaae9a6173e692bd72 100644 (file)
@@ -3,4 +3,3 @@
 # <file system>        <mount point>   <type>  <options>       <dump>  <pass>
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 LABEL=DebXO    /               ext3    errors=remount-ro 0     1       # 1024
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 052a5d51f1f98a7c168e7cc2545d49badecee9e6..dd3a20dfb16efd81466c9b57a6a9bdefa97b2096 100644 (file)
@@ -4,4 +4,3 @@
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 mtd:boot       /boot           jffs2   defaults,noatime 1      1       # 50
 ubi:root       /               ubifs   defaults,noatime 1      1
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 7ae367e130d9a708f655c01b01c3b9cf758cb51b..bd42ba7786e3ff045b357e3e1fed3fcb7bf7b6e3 100644 (file)
@@ -26,21 +26,10 @@ customize_chroot_hook()
        # OFW needs this to boot w/ partitions
        ln -s . ${ROOT_DIR}/boot/boot
        
-       # Apt can't deal w/ jffs2's lack of mmap, so we keep apt's cache on tmpfs
-       # (see <http://bugs.debian.org/314334>).
-       mkdir ${ROOT_DIR}/var/cache/apt/cache
-       mount -t tmpfs tmpfs ${ROOT_DIR}/var/cache/apt/cache
-       # XOs are slow and small; don't use pdiffs, don't install recommends, and
-       # work around lack of mmap.
+       # XOs are slow and small; don't use pdiffs and don't install recommends
 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
 Acquire::Pdiffs "false";
 APT::Install-Recommends "false";
-Dir {
-       Cache "var/cache/apt/" {
-               srcpkgcache "cache/srcpkgcache.bin";
-               pkgcache "cache/pkgcache.bin";
-       };
-};
 EOF
 }
 
@@ -110,6 +99,4 @@ cleanup_chroot_hook()
        # Any customizations that need to be made after the chroot creation is
        # complete should be put here.  $ROOT_DIR should be prefixed to any
        # paths.
-
-       umount ${ROOT_DIR}/var/cache/apt/cache
 }
index 3f232bec98c4e54ada380366da86169aa1443d66..cfa7c1fb65fcd3433d56bcbaae9a6173e692bd72 100644 (file)
@@ -3,4 +3,3 @@
 # <file system>        <mount point>   <type>  <options>       <dump>  <pass>
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 LABEL=DebXO    /               ext3    errors=remount-ro 0     1       # 1024
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 052a5d51f1f98a7c168e7cc2545d49badecee9e6..dd3a20dfb16efd81466c9b57a6a9bdefa97b2096 100644 (file)
@@ -4,4 +4,3 @@
 proc           /proc           proc    defaults        0       0       # <partition size in MB>
 mtd:boot       /boot           jffs2   defaults,noatime 1      1       # 50
 ubi:root       /               ubifs   defaults,noatime 1      1
-tmpfs          /var/cache/apt/cache tmpfs defaults     0       0
index 972119e5e62e021daf1915e9e5a1f844dbac36dd..d54080bf78d2c943e1566e3fe88be8cfa6000571 100644 (file)
@@ -26,21 +26,10 @@ customize_chroot_hook()
        # OFW needs this to boot w/ partitions
        ln -s . ${ROOT_DIR}/boot/boot
 
-       # Apt can't deal w/ jffs2's lack of mmap, so we keep apt's cache on tmpfs
-       # (see <http://bugs.debian.org/314334>).
-       mkdir ${ROOT_DIR}/var/cache/apt/cache
-       mount -t tmpfs tmpfs ${ROOT_DIR}/var/cache/apt/cache
-       # XOs are slow and small; don't use pdiffs, don't install recommends, and
-       # work around lack of mmap.
+       # XOs are slow and small; don't use pdiffs and don't install recommends
 cat >${ROOT_DIR}/etc/apt/apt.conf<<EOF
 Acquire::Pdiffs "false";
 APT::Install-Recommends "false";
-Dir {
-       Cache "var/cache/apt/" {
-               srcpkgcache "cache/srcpkgcache.bin";
-               pkgcache "cache/pkgcache.bin";
-       };
-};
 EOF
 }
 
@@ -102,6 +91,4 @@ cleanup_chroot_hook()
        # Any customizations that need to be made after the chroot creation is
        # complete should be put here.  $ROOT_DIR should be prefixed to any
        # paths.
-
-       umount ${ROOT_DIR}/var/cache/apt/cache
 }