mirror of
https://github.com/drasko/codezero.git
synced 2026-02-02 13: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:
@@ -12,7 +12,6 @@
|
||||
#include INC_GLUE(memory.h)
|
||||
#include INC_GLUE(memlayout.h)
|
||||
#include INC_ARCH(bootdesc.h)
|
||||
#include <vm_area.h>
|
||||
|
||||
struct initdata {
|
||||
struct bootdesc *bootdesc;
|
||||
|
||||
@@ -21,11 +21,6 @@ void wait_pager(l4id_t partner)
|
||||
printf("Pager synced with us.\n");
|
||||
}
|
||||
|
||||
void fs_request_handler(struct fs_request *fsreq)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void handle_fs_requests(void)
|
||||
{
|
||||
u32 mr[MR_UNUSED_TOTAL];
|
||||
|
||||
@@ -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