add directory tmp to the root file system

This commit is contained in:
Stefan Lankes 2015-01-18 08:01:02 +01:00
parent 119d54c545
commit 2b26565b16

View file

@ -472,7 +472,8 @@ int initrd_init(void)
/* create the directory bin and dev */
mkdir_fs(fs_root, "bin");
mkdir_fs(fs_root, "sbin");
tmp = mkdir_fs(fs_root, "dev");
mkdir_fs(fs_root, "dev");
mkdir_fs(fs_root, "tmp");
/* create the character device "kmessages" */
tmp = mkdir_fs(fs_root, "var");