mirror of
https://github.com/drasko/codezero.git
synced 2026-01-23 08:13:15 +01:00
Removed all ignorable files from git.
Previously python hex() would put an extra 'L' after printing out the value and this would be trimmed in readelf.py. Now it doesn't seem to do that so the lsd of the number was trimmed. This patch fixes that.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
#include <kdata.h>
|
||||
#include <string.h>
|
||||
#include INC_API(kip.h)
|
||||
#include <kmalloc/kmalloc.h>
|
||||
#include <task.h>
|
||||
|
||||
/* Kernel data acquired during initialisation */
|
||||
struct initdata initdata;
|
||||
|
||||
@@ -14,8 +14,6 @@ void wait_task(l4id_t partner)
|
||||
|
||||
void mount_root(void)
|
||||
{
|
||||
l4id_t blkdev_shmid;
|
||||
|
||||
/*
|
||||
* We know the primary block device from compile-time.
|
||||
* It is expected to have the root filesystem.
|
||||
@@ -23,6 +21,5 @@ void mount_root(void)
|
||||
wait_task(BLKDEV_TID);
|
||||
|
||||
/* Set up a shared memory area with the block device */
|
||||
l4_receive_shm(
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user