summaryrefslogtreecommitdiff
path: root/bootwrapper/filesystem.S
diff options
context:
space:
mode:
Diffstat (limited to 'bootwrapper/filesystem.S')
-rw-r--r--bootwrapper/filesystem.S20
1 files changed, 20 insertions, 0 deletions
diff --git a/bootwrapper/filesystem.S b/bootwrapper/filesystem.S
new file mode 100644
index 0000000..80068ea
--- /dev/null
+++ b/bootwrapper/filesystem.S
@@ -0,0 +1,20 @@
+ AREA |filesystem|, CODE, ALIGN=2 ; $Copyright:
+ ;; ----------------------------------------------------------------
+ ;; This confidential and proprietary software may be used only as
+ ;; authorised by a licensing agreement from ARM Limited
+ ;; (C) COPYRIGHT 2008-2011 ARM Limited
+ ;; ALL RIGHTS RESERVED
+ ;; The entire notice above must be reproduced on all authorised
+ ;; copies and copies may only be made to the extent permitted
+ ;; by a licensing agreement from ARM Limited.
+ ;; ----------------------------------------------------------------
+ ;; File: filesystem.S
+ ;; ----------------------------------------------------------------
+ ;; $
+
+ EXPORT fs_start
+ EXPORT fs_end
+fs_start
+ INCBIN payload/fsimg
+fs_end
+ END