Update of /cvsroot/blob/blob/src/blob
In directory sc8-pr-cvs1:/tmp/cvs-serv1944
Modified Files:
smdk2500.c
Log Message:
update smdk2500.c to reflect map switch
Index: smdk2500.c
===================================================================
RCS file: /cvsroot/blob/blob/src/blob/smdk2500.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- smdk2500.c 4 Sep 2003 18:34:25 -0000 1.2
+++ smdk2500.c 27 Nov 2003 03:34:37 -0000 1.3
@@ -73,7 +73,7 @@
/* start of table */
magic: BLOB_DEFAULT_PART_TABLE_MAGIC,
next: sizeof(blob_partition_t),
- offset: 0x00000000, /* absolute base address */
+ offset: 0x80000000, /* absolute base address */
size: 2 * 1024 * 1024 /* total size of the flash */
},
{
@@ -92,6 +92,7 @@
offset: PARAM_FLASH_BASE,
size: PARAM_FLASH_LEN,
name: "param",
+ mem_base: PARAM_RAM_BASE,
flags: BLOB_PART_FLAG_PTABLE
},
{
@@ -106,18 +107,6 @@
mem_base: KERNEL_RAM_BASE,
entry_point: KERNEL_RAM_BASE
},
-#if 0
- {
- /* ramdisk */
- magic: BLOB_PART_VALID_MAGIC,
- next: sizeof(blob_partition_t),
- offset: RAMDISK_FLASH_BASE,
- size: RAMDISK_FLASH_LEN,
- name: "ramdisk",
- flags: BLOB_PART_FLAG_LOAD,
- mem_base: RAMDISK_RAM_BASE
- },
-#endif
{
/* last entry */
magic: BLOB_PART_LAST_MAGIC
@@ -138,7 +127,7 @@
* put the pointer at 0x0000000 and let the partition table
* parser figure out.
*/
- flash_partition_table = (blob_partition_t*)0x00000000;
+ flash_partition_table = (blob_partition_t*)0x80000000;
/* select drivers */
reboot_driver = &s3c2500_reboot_driver;
|