From 6cd1a40dbc1b915fe211898cf0d306bfe958eec7 Mon Sep 17 00:00:00 2001 From: Kevin Lange Date: Mon, 24 Aug 2015 21:34:24 -0700 Subject: [PATCH] Expose random as urandom as well --- modules/random.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/random.c b/modules/random.c index 349f937e..ffca6dc2 100644 --- a/modules/random.c +++ b/modules/random.c @@ -61,6 +61,7 @@ static fs_node_t * random_device_create(void) { static int random_initialize(void) { vfs_mount("/dev/random", random_device_create()); + vfs_mount("/dev/urandom", random_device_create()); return 0; }