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:
Bahadir Balban
2008-01-14 12:23:40 +00:00
parent e2b791a3d8
commit 7a388f22b7
31 changed files with 20 additions and 178 deletions

View File

@@ -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;

View File

@@ -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(
}