Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
Signed-off-by: Lup Yuen Lee <luppy@appkaki.com>
  • Loading branch information
lupyuen committed Mar 2, 2025
1 parent ed5cea0 commit a1e16b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
5 changes: 0 additions & 5 deletions boards/risc-v/eic7700x/starpro64/include/board_memorymap.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@
* Pre-processor Definitions
****************************************************************************/

/* DDR start address */

#define EIC7700X_DDR_BASE (0x50200000)
#define EIC7700X_DDR_SIZE (0x03e00000)

/* Kernel code memory (RX) */

#define KFLASH_START (uintptr_t)__kflash_start
Expand Down
10 changes: 5 additions & 5 deletions boards/risc-v/eic7700x/starpro64/scripts/ld.script
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ MEMORY

OUTPUT_ARCH("riscv")

/* Provide the kernel boundaries */
/* Define the kernel boundaries */

__kflash_start = ORIGIN(kflash);
__kflash_size = LENGTH(kflash);
Expand All @@ -53,7 +53,7 @@ SECTIONS
{
. = 0x80200000;

/* where the global variable out-of-bounds detection information located */
/* Global variable out-of-bounds detection */

#ifdef CONFIG_MM_KASAN_GLOBAL
.kasan.unused : {
Expand All @@ -79,7 +79,7 @@ SECTIONS
*(.glue_7t)
*(.jcr)

/* C++ support: The .init and .fini sections contain specific logic
/* C++ support: The .init and .fini sections contain specific logic
* to manage static constructors and destructors.
*/

Expand Down Expand Up @@ -139,7 +139,7 @@ SECTIONS
_ebss = . ;
} > ksram

/* Page tables here, align to 4K boundary */
/* Page tables, aligned to 4K boundary */

.pgtables (NOLOAD) : ALIGN(0x1000)
{
Expand All @@ -155,7 +155,7 @@ SECTIONS
_ebss = ABSOLUTE(.);
} > ksram

/* Stabs debugging sections. */
/* Stabs debugging */

.stab 0 : { *(.stab) }
.stabstr 0 : { *(.stabstr) }
Expand Down

0 comments on commit a1e16b8

Please sign in to comment.