archboot/usr/lib/initcpio/hooks/arch_base

12 lines
316 B
Text
Raw Normal View History

2007-02-22 23:46:50 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
run_hook ()
{
2010-07-11 17:44:21 +02:00
# fix x86_64 symlink on x86_64
[ "$(uname -r)" = "x86_64" ] && ln -s /usr/bin/setarch /usr/bin/x86_64
2012-09-10 21:59:22 +02:00
# these static devices are created for convenience, to autoload the modules if necessary
# /dev/loop0
mknod -m 0660 /dev/loop0 b 7 0
2013-06-18 14:55:11 +02:00
}