summaryrefslogtreecommitdiff
path: root/ota-test/misc/header.ld
diff options
context:
space:
mode:
Diffstat (limited to 'ota-test/misc/header.ld')
-rw-r--r--ota-test/misc/header.ld12
1 files changed, 12 insertions, 0 deletions
diff --git a/ota-test/misc/header.ld b/ota-test/misc/header.ld
new file mode 100644
index 0000000..33579b6
--- /dev/null
+++ b/ota-test/misc/header.ld
@@ -0,0 +1,12 @@
+MEMORY
+{
+ RAM : org = 0x0, len = 0x10
+}
+
+SECTIONS
+{
+ .header :
+ {
+ *(.data)
+ } > RAM
+}