archboot/usr/lib/initcpio/hooks/arch_base
Tobias Powalowski a77197d126 ChangeLog:
1. Added rEFInd boot manager support for both x86_64 and i386 UEFI
EFISTUB booting.
2. Unify blkid options in setup script via  .
3. Rename UUID to FSUUID, LABEL to FSLABEL and rename the
corresponding functions getuuid and getlabel to getfsuuid and
getfslabel recpectively.
2012-04-19 08:22:42 +02:00

12 lines
308 B
Text

# Created by Tobias Powalowski <tpowa@archlinux.org>
run_hook ()
{
# fixing some symlinks
# fix x86_64 symlink on x86_64
[ "$(uname -r)" = "x86_64" ] && ln -s /usr/bin/setarch /usr/bin/x86_64
# fix permission on /var/lock
chmod 1777 /var/lock
# fix vi symlink
ln -s /usr/bin/vim /usr/bin/vi
}