Initial commit
This commit is contained in:
commit
295a111cec
89 changed files with 2897 additions and 0 deletions
14
config/class/85-efi-classes
Executable file
14
config/class/85-efi-classes
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#! /bin/bash
|
||||
|
||||
# define classes for disk_config in an EFI enironment
|
||||
|
||||
if [ ! -d /sys/firmware/efi ] || ifclass GRUB_PC; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
for c in LVM FAIBASE; do
|
||||
if ifclass $c; then
|
||||
echo ${c}_EFI
|
||||
break
|
||||
fi
|
||||
done
|
||||
Reference in a new issue