From 4a4da37d068a22761a44d5dcf047780f80e8b1b9 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Wed, 31 May 2017 22:47:55 +0300 Subject: [PATCH] stage2: force grub-compatible ext4 options We use grub2 2.00, it's not compatible with new mke2fs options (namely "64bit" one); disable it for now. See-also: https://bugzilla.altlinux.org/show_bug.cgi?id=33489#c6 --- features.in/stage2/stage2/image-scripts.d/50-e2fs-opts | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 features.in/stage2/stage2/image-scripts.d/50-e2fs-opts diff --git a/features.in/stage2/stage2/image-scripts.d/50-e2fs-opts b/features.in/stage2/stage2/image-scripts.d/50-e2fs-opts new file mode 100755 index 00000000..a36a3b5f --- /dev/null +++ b/features.in/stage2/stage2/image-scripts.d/50-e2fs-opts @@ -0,0 +1,3 @@ +#!/bin/sh +# for grub2 2.00; see also #33489 +sed -i 's/,64bit//' /etc/mke2fs.conf ||: