diff options
author | Thomas Bächler <thomas@archlinux.org> | 2008-03-15 20:18:01 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2008-03-15 20:18:01 +0100 |
commit | ed27f00e864699c6d517ae88f613a87bbd34c77a (patch) | |
tree | ed7fcc4b5e7b5dd468cc9111ff7fd360ee439bac | |
parent | 41faecce468a243f1b0835cacdb373c8b4515204 (diff) | |
download | mkinitcpio-ed27f00e864699c6d517ae88f613a87bbd34c77a.tar.gz mkinitcpio-ed27f00e864699c6d517ae88f613a87bbd34c77a.tar.xz |
v86d failed if called before udev, because /dev/mem didn't exist. This patch allows people to use uvesafb earlier.
-rw-r--r-- | install/base | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/base b/install/base index dc75917..071e62e 100644 --- a/install/base +++ b/install/base @@ -9,6 +9,7 @@ install () add_device "/dev/null" c 1 3 add_device "/dev/zero" c 1 5 add_device "/dev/console" c 5 1 + add_device "/dev/mem" c 1 1 for f in $(find /lib -name klibc-*.so); do add_file $f |