diff -Nru ac100-tarball-installer-0.45/debian/changelog ac100-tarball-installer-0.46/debian/changelog --- ac100-tarball-installer-0.45/debian/changelog 2013-02-25 15:22:35.000000000 +0000 +++ ac100-tarball-installer-0.46/debian/changelog 2013-04-04 13:51:27.000000000 +0000 @@ -1,3 +1,12 @@ +ac100-tarball-installer (0.46) raring; urgency=low + + * add a workaround for (LP: #1164071) (hardcode FRAMEBUFFER=Y into the + initrd so plymouth does not freak out on boot) + * quieten update-initramfs so it doesnt show a df warning when generating + the initrd + + -- Oliver Grawert Thu, 04 Apr 2013 15:49:07 +0200 + ac100-tarball-installer (0.45) raring; urgency=low * Copy across wifi settings if available. diff -Nru ac100-tarball-installer-0.45/installer ac100-tarball-installer-0.46/installer --- ac100-tarball-installer-0.45/installer 2013-02-25 14:45:58.000000000 +0000 +++ ac100-tarball-installer-0.46/installer 2013-04-04 13:49:03.000000000 +0000 @@ -299,9 +299,11 @@ flash_kernel() { mount_vfs + # Workaround for (LP: #1084063 and #1164071) + [ -e /root/etc/initramfs-tools/conf.d/framebuffer ] || echo "FRAMEBUFFER=Y" >/root/etc/initramfs-tools/conf.d/framebuffer # make sure we remove ourself first chroot /root dpkg --purge ac100-tarball-installer - chroot /root update-initramfs -u + chroot /root update-initramfs -u 2>/dev/null [ -e /root/var/lib/oem-config/run ] || touch /root/var/lib/oem-config/run umount_vfs }