Changeset 3080 for live-build
- Timestamp:
- Dec 15, 2016, 1:00:45 PM (4 years ago)
- Location:
- live-build/trunk/fuentes
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
live-build/trunk/fuentes/debian/changelog
r903 r3080 1 live-build (3.0~a57-1ubuntu25 +lliurex1) xenial; urgency=high2 3 * Remove wrong option on lb_binary_disk script(LP: #1555980)4 5 -- Raul Rodrigo Segura <raurodse@gmail.com> Fri, 18 Mar 2016 12:12:39+01001 live-build (3.0~a57-1ubuntu25.1) xenial; urgency=medium 2 3 * Avoid recompressing initrd.img symlinks (LP: #1539157). 4 5 -- Colin Watson <cjwatson@ubuntu.com> Tue, 28 Jun 2016 15:45:10 +0100 6 6 7 7 live-build (3.0~a57-1ubuntu25) xenial; urgency=medium -
live-build/trunk/fuentes/debian/patches/series
r902 r3080 32 32 upstart-not-in-bootstrap 33 33 ubuntu-s390x-support.patch 34 fix_launchpadbug_1555980 34 ubuntu-initramfs-compression-symlinks.patch -
live-build/trunk/fuentes/scripts/build/lb_binary_disk
r902 r3080 109 109 110 110 lzma) 111 lzcat "../../${INITRD}" | cpio --quiet -id conf/uuid.conf111 lzcat -S "" "../../${INITRD}" | cpio --quiet -id conf/uuid.conf 112 112 ;; 113 113 esac -
live-build/trunk/fuentes/scripts/build/lb_chroot_hacks
r900 r3080 196 196 197 197 bzip2) 198 for INITRAMFS in $(find chroot/boot -name 'initrd*' ); do198 for INITRAMFS in $(find chroot/boot -name 'initrd*' -not -type l); do 199 199 zcat "${INITRAMFS}" | bzip2 -c ${BZIP2_OPTIONS} > "${INITRAMFS}.new" 200 200 mv "${INITRAMFS}.new" "${INITRAMFS}" … … 206 206 # /etc/initramfs-tools/conf.d/ instead, but it's hard to 207 207 # pass options that way. 208 for INITRAMFS in $(find chroot/boot -name 'initrd*' ); do208 for INITRAMFS in $(find chroot/boot -name 'initrd*' -not -type l); do 209 209 zcat "${INITRAMFS}" | lzma -c ${LZMA_OPTIONS} > "${INITRAMFS}.new" 210 210 mv "${INITRAMFS}.new" "${INITRAMFS}"
Note: See TracChangeset
for help on using the changeset viewer.