summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebastian.rasmussen@stericsson.com>2010-08-30 23:45:38 +0200
committerMichael BRANDT <michael.brandt@stericsson.com>2010-08-31 17:33:52 +0200
commitdf4963a61499dd34cb9aaf87321b06e3666a323c (patch)
treea78a52363d1995c9d342f7ce7a3762090e9ed98f /board
parent2baf01434d39acdc45fdcc6c756d7121943e4c4f (diff)
Move modem parameter partition to start of memory.
Since memory sizes vary, addresses at the end of the memory vary as well. The modem parameter partition should reside in a fixed location and has therefore been moved to a fixed location at the start of the memory. Other partitions have been moved accordingly, but the kernel image and root file system partition locations and sizes have been kept as they were. ST Ericsson ID: ER270475 Change-Id: Ib7202e70ba23e1dd026b1d487505fed3b9032caf Signed-off-by: Sebastian Rasmussen <sebastian.rasmussen@stericsson.com> Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/4303 Reviewed-by: Mikael LARSSON <mikael.xt.larsson@stericsson.com> Reviewed-by: Michael BRANDT <michael.brandt@stericsson.com> Reviewed-by: Ulf HANSSON <ulf.hansson@stericsson.com>
Diffstat (limited to 'board')
-rw-r--r--board/st/u8500/mmc_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/st/u8500/mmc_utils.c b/board/st/u8500/mmc_utils.c
index b630e8adb..5d8267f55 100644
--- a/board/st/u8500/mmc_utils.c
+++ b/board/st/u8500/mmc_utils.c
@@ -65,7 +65,7 @@ static struct partition partitions_ed[] = {
static struct partition partitions_v1[] = {
[0] = PART(0x83, 0x000A0000, 0x00004000), /* Kernel */
[1] = PART(0x83, 0x000A4000, 0x00080000), /* Root file system */
- [2] = PART(0x83, 0x001FF800, 0x00000800), /* Modem parameters */
+ [2] = PART(0x83, 0x00000400, 0x00000800), /* Modem parameters */
[3] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
};