From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on sa.int.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 Date: Thu, 31 Jan 2013 08:54:24 +0200 From: Michael Shigorin To: sisyphus@lists.altlinux.org Message-ID: <20130131065424.GK21896@osdn.org.ua> Mail-Followup-To: sisyphus@lists.altlinux.org References: <20130131012921.GA21935@granary.egro.altlinux.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="opJtzjQTFsWo+cga" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20130131012921.GA21935@granary.egro.altlinux.org> User-Agent: Mutt/1.4.2.1i Subject: [sisyphus] U: grub-efi-2.00-alt9: missing post script X-BeenThere: sisyphus@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: shigorin@gmail.com, ALT Linux Sisyphus discussions List-Id: ALT Linux Sisyphus discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2013 06:54:31 -0000 Archived-At: List-Archive: List-Post: --opJtzjQTFsWo+cga Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit On Thu, Jan 31, 2013 at 01:29:21AM +0000, QA Team Robot wrote: > grub2 - GRand Unified Bootloader > * Wed Jan 23 2013 Michael Shigorin 2.00-alt9 > - efi subpackage is signed by default on x86_64 > - introduced efi-unsigned subpackage with a clean copy > - initial grub-2.00-install-uefi-signed.patch based on > ubuntu_install_signed.patch from 2.00-11ubuntu1 package > - initial efi postinstall update script Недосмотрел -- скрипт grub-efi-autoupdate есть в gear repo, но не вошёл в собственно пакет. Прошу пользователей grub-efi, если таковые уже есть, положить приложенный вариант в /usr/sbin и запустить. -- ---- WBR, Michael Shigorin ------ Linux.Kiev http://www.linux.kiev.ua/ --opJtzjQTFsWo+cga Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=grub-efi-autoupdate #! /bin/sh if [ ! -d /sys/firmware/efi ]; then echo "Not booted in EFI mode, unable to update EFI GRUB" exit 0 fi DIST="ALT Linux" EFI_DIR="/boot/efi" GRUB_EFI="$EFI_DIR/EFI/$DIST/grubx64.efi" if [ ! -f "$GRUB_EFI" ]; then echo "$GRUB_EFI missing, nothing to update" exit 0 fi case "$GRUB_AUTOUPDATE_FORCE" in true|yes) GRUB_FORCE="--force";; esac echo "Updating grub in $EFI_DIR" grub-install \ --target=x86_64-efi --efi-directory="$EFI_DIR" \ --bootloader-id="$DIST" --recheck --opJtzjQTFsWo+cga--