summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@snapgear.com>2003-02-18 05:47:55 -0800
committerLinus Torvalds <torvalds@home.transmeta.com>2003-02-18 05:47:55 -0800
commit3972dfabae304e0cab086714dd9c7a86e9c74306 (patch)
treeb56da9d6353401a13eb443710c854b1de12f08e8 /include
parent497a91510f768c4bdecac6a6a571eafe505167dd (diff)
[PATCH] create an architecture specific flat header for m68knommu
Add a per-architecture flat.h flat format executable header. The idea is to support the different options required in a clean way. For starters we need to be able to configure the initial stack layout, and this differs for different CPU types. This first patch adds the header for the m68knommu architecture.
Diffstat (limited to 'include')
-rw-r--r--include/asm-m68knommu/flat.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asm-m68knommu/flat.h b/include/asm-m68knommu/flat.h
new file mode 100644
index 000000000000..fe805aaa33df
--- /dev/null
+++ b/include/asm-m68knommu/flat.h
@@ -0,0 +1,10 @@
+/*
+ * include/asm-m68knommu/flat.h -- uClinux flat-format executables
+ */
+
+#ifndef __M68KNOMMU_FLAT_H__
+#define __M68KNOMMU_FLAT_H__
+
+#define flat_argvp_envp_on_stack() 1
+
+#endif /* __M68KNOMMU_FLAT_H__ */