forked from Imagelibrary/rtems
libdebugger: Fix for Armv8-R
This architecture variant has no MMU. Update #4202.
This commit is contained in:
@@ -1678,6 +1678,7 @@ target_exception_data_abort(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if ARM_CP15
|
#if ARM_CP15
|
||||||
|
#if __ARM_ARCH_PROFILE == 'A'
|
||||||
/**
|
/**
|
||||||
* The init value for the text section.
|
* The init value for the text section.
|
||||||
*/
|
*/
|
||||||
@@ -1701,6 +1702,12 @@ rtems_debugger_target_set_mmu(void)
|
|||||||
text_end,
|
text_end,
|
||||||
ARMV7_MMU_DATA_READ_WRITE_CACHED);
|
ARMV7_MMU_DATA_READ_WRITE_CACHED);
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
static void
|
||||||
|
rtems_debugger_target_set_mmu(void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void
|
static void
|
||||||
rtems_debugger_target_set_vectors(void)
|
rtems_debugger_target_set_vectors(void)
|
||||||
|
|||||||
Reference in New Issue
Block a user