Commit 020a2446 authored by Greg Ungerer's avatar Greg Ungerer Committed by Linus Torvalds

[PATCH] conditional ROMfs copy for Cleopatra/5307 board

Conditionally copy the ROMfs filesystem on the Cleopatra/5307
target board only if using a ROMfs.
parent d24d1d3a
......@@ -127,6 +127,7 @@ _start:
movc %d0,%CACR
#ifdef CONFIG_ROMFS_FS
/*
* Move ROM filesystem above bss :-)
*/
......@@ -148,6 +149,12 @@ _copy_romfs:
cmp.l %a0, %a2 /* Check if at end */
bne _copy_romfs
#else /* CONFIG_ROMFS_FS */
lea.l _ebss, %a1
move.l %a1, _ramstart
#endif /* CONFIG_ROMFS_FS */
/*
* Zero out the bss region.
*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment