From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BEFB21381F3 for ; Tue, 6 Aug 2013 00:40:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CD86E0B33; Tue, 6 Aug 2013 00:40:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9C8AE0B33 for ; Tue, 6 Aug 2013 00:40:28 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8727D33EC0A for ; Tue, 6 Aug 2013 00:40:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 0D591E468F for ; Tue, 6 Aug 2013 00:40:22 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1375749546.9f4116ea616f806d02f6abff60a42be222a672c1.zerochaos@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/livecdfs-update.sh X-VCS-Directories: targets/support/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: 9f4116ea616f806d02f6abff60a42be222a672c1 X-VCS-Branch: master Date: Tue, 6 Aug 2013 00:40:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9d236d32-1c66-4ef5-a0ad-0c8fb215ce67 X-Archives-Hash: 6fe64517c08f0a7c290dbe09b3c8a9cc commit: 9f4116ea616f806d02f6abff60a42be222a672c1 Author: Rick Farina (Zero_Chaos) gentoo org> AuthorDate: Tue Aug 6 00:39:06 2013 +0000 Commit: Richard Farina gentoo org> CommitDate: Tue Aug 6 00:39:06 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=9f4116ea stop tarballing firmware I can't find a reason why firmware is tarballed in the first place, and now things are messing up because of missing firmware. Remove tarballing and tmpfs mount for /lib/firmware and just leave it alone. Bug 479456 --- targets/support/livecdfs-update.sh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/targets/support/livecdfs-update.sh b/targets/support/livecdfs-update.sh index 5aaa38e..b34e917 100644 --- a/targets/support/livecdfs-update.sh +++ b/targets/support/livecdfs-update.sh @@ -220,17 +220,6 @@ then fi fi -# Create firmware directory if it does not exist -[ ! -d /lib/firmware ] && mkdir -p /lib/firmware - -# tar up the firmware so that it does not get clobbered by the livecd mounts -if [ -n "$(ls /lib/firmware)" ] -then - cd /lib/firmware - /bin/tar -I bzip2 -cpf /lib/firmware.tar.bz2 . - rm -rf /lib/firmware/* -fi - # Clear out locales case ${clst_livecd_type} in gentoo-release-minimal|gentoo-release-universal|gentoo-gamecd)