[U-Boot] [PATCH v2 6/8] keymile boards: move keymile specific header in subdir
Holger Brunck
holger.brunck at keymile.com
Wed May 4 13:47:33 CEST 2011
From: Valentin Longchamp <valentin.longchamp at keymile.com>
Collect all keymile specific common headers in include/configs/km.
Signed-off-by: Heiko Schocher <hs at denx.de>
Signed-off-by: Valentin Longchamp <valentin.longchamp at keymile.com>
cc: Wolfgang Denk <wd at denx.de>
cc: Detlev Zundel <dzu at denx.de>
cc: Prafulla Wadaskar <prafulla at marvell.com>
cc: Kim Phillips <kim.phillips at freescale.com>
cc: Holger Brunck <holger.brunck at keymile.com>
---
Changes for v2:
- split up first large patch serie to three independent smaller
patch series
- no change in the content of this patch
include/configs/{ => km}/keymile-common.h | 0
include/configs/{ => km}/km-powerpc.h | 0
include/configs/{ => km}/km82xx-common.h | 0
include/configs/{ => km}/km8321-common.h | 0
include/configs/{ => km}/km83xx-common.h | 0
include/configs/{ => km}/km_arm.h | 0
include/configs/kmeter1.h | 2 +-
include/configs/kmsupx5.h | 2 +-
include/configs/mgcoge.h | 6 +++---
include/configs/mgcoge2ne.h | 6 +++---
include/configs/mgcoge2un.h | 2 +-
include/configs/suen3.h | 2 +-
include/configs/suen8.h | 2 +-
include/configs/suvd3.h | 2 +-
include/configs/tuda1.h | 2 +-
include/configs/tuxa1.h | 2 +-
16 files changed, 14 insertions(+), 14 deletions(-)
rename include/configs/{ => km}/keymile-common.h (100%)
rename include/configs/{ => km}/km-powerpc.h (100%)
rename include/configs/{ => km}/km82xx-common.h (100%)
rename include/configs/{ => km}/km8321-common.h (100%)
rename include/configs/{ => km}/km83xx-common.h (100%)
rename include/configs/{ => km}/km_arm.h (100%)
diff --git a/include/configs/keymile-common.h b/include/configs/km/keymile-common.h
similarity index 100%
rename from include/configs/keymile-common.h
rename to include/configs/km/keymile-common.h
diff --git a/include/configs/km-powerpc.h b/include/configs/km/km-powerpc.h
similarity index 100%
rename from include/configs/km-powerpc.h
rename to include/configs/km/km-powerpc.h
diff --git a/include/configs/km82xx-common.h b/include/configs/km/km82xx-common.h
similarity index 100%
rename from include/configs/km82xx-common.h
rename to include/configs/km/km82xx-common.h
diff --git a/include/configs/km8321-common.h b/include/configs/km/km8321-common.h
similarity index 100%
rename from include/configs/km8321-common.h
rename to include/configs/km/km8321-common.h
diff --git a/include/configs/km83xx-common.h b/include/configs/km/km83xx-common.h
similarity index 100%
rename from include/configs/km83xx-common.h
rename to include/configs/km/km83xx-common.h
diff --git a/include/configs/km_arm.h b/include/configs/km/km_arm.h
similarity index 100%
rename from include/configs/km_arm.h
rename to include/configs/km/km_arm.h
diff --git a/include/configs/kmeter1.h b/include/configs/kmeter1.h
index 2fcecaf..8639ddd 100644
--- a/include/configs/kmeter1.h
+++ b/include/configs/kmeter1.h
@@ -34,7 +34,7 @@
"netdev=eth2\0" \
/* include common defines/options for all 83xx Keymile boards */
-#include "km83xx-common.h"
+#include "km/km83xx-common.h"
#define CONFIG_MISC_INIT_R
/*
diff --git a/include/configs/kmsupx5.h b/include/configs/kmsupx5.h
index 55ed3f6..f8cd8e0 100644
--- a/include/configs/kmsupx5.h
+++ b/include/configs/kmsupx5.h
@@ -36,7 +36,7 @@
#define CONFIG_SYS_TEXT_BASE 0xF0000000
/* include common defines/options for all 8321 Keymile boards */
-#include "km8321-common.h"
+#include "km/km8321-common.h"
/*
* Init Local Bus Memory Controller:
diff --git a/include/configs/mgcoge.h b/include/configs/mgcoge.h
index dcde76c..3a08294 100644
--- a/include/configs/mgcoge.h
+++ b/include/configs/mgcoge.h
@@ -36,8 +36,8 @@
#define CONFIG_SYS_TEXT_BASE 0xFE000000
/* include common defines/options for all Keymile boards */
-#include "keymile-common.h"
-#include "km-powerpc.h"
+#include "km/keymile-common.h"
+#include "km/km-powerpc.h"
#define CONFIG_SYS_SDRAM_BASE 0x00000000
#define CONFIG_SYS_FLASH_BASE 0xFE000000
@@ -59,7 +59,7 @@
#define MTDIDS_DEFAULT "nor3=app"
/* include further common stuff for all keymile 82xx boards */
-#include "km82xx-common.h"
+#include "km/km82xx-common.h"
/* bfticu address */
#define CONFIG_SYS_BFTICU_BASE 0x40000000
diff --git a/include/configs/mgcoge2ne.h b/include/configs/mgcoge2ne.h
index 287b717..62f227d 100644
--- a/include/configs/mgcoge2ne.h
+++ b/include/configs/mgcoge2ne.h
@@ -35,8 +35,8 @@
#define CONFIG_SYS_TEXT_BASE 0xFE000000
/* include common defines/options for all Keymile boards */
-#include "keymile-common.h"
-#include "km-powerpc.h"
+#include "km/keymile-common.h"
+#include "km/km-powerpc.h"
#define CONFIG_SYS_SDRAM_BASE 0x00000000
#define CONFIG_SYS_FLASH_BASE 0xFE000000
@@ -59,6 +59,6 @@
#define MTDIDS_DEFAULT "nor2=app"
/* include further common stuff for all keymile 82xx boards */
-#include "km82xx-common.h"
+#include "km/km82xx-common.h"
#endif /* __MGCOGE2NE */
diff --git a/include/configs/mgcoge2un.h b/include/configs/mgcoge2un.h
index d3c7bdc..6256035 100644
--- a/include/configs/mgcoge2un.h
+++ b/include/configs/mgcoge2un.h
@@ -35,7 +35,7 @@
#define _CONFIG_MGCOGE2UN_H
/* include common defines/options for all arm based Keymile boards */
-#include "km_arm.h"
+#include "km/km_arm.h"
/*
* Version number information
diff --git a/include/configs/suen3.h b/include/configs/suen3.h
index 2b6f19e..aa4d778 100644
--- a/include/configs/suen3.h
+++ b/include/configs/suen3.h
@@ -34,7 +34,7 @@
#define _CONFIG_SUEN3_H
/* include common defines/options for all arm based Keymile boards */
-#include "km_arm.h"
+#include "km/km_arm.h"
/*
* Version number information
diff --git a/include/configs/suen8.h b/include/configs/suen8.h
index 3f60bc3..b680dfb 100644
--- a/include/configs/suen8.h
+++ b/include/configs/suen8.h
@@ -35,7 +35,7 @@
#define _CONFIG_SUEN8_H
/* include common defines/options for all arm based Keymile boards */
-#include "km_arm.h"
+#include "km/km_arm.h"
/*
* Version number information
diff --git a/include/configs/suvd3.h b/include/configs/suvd3.h
index d9eb201..0b59d51 100644
--- a/include/configs/suvd3.h
+++ b/include/configs/suvd3.h
@@ -30,7 +30,7 @@
#define CONFIG_SYS_TEXT_BASE 0xF0000000
/* include common defines/options for all 8321 Keymile boards */
-#include "km8321-common.h"
+#include "km/km8321-common.h"
#define CONFIG_SYS_APP1_BASE 0xA0000000
#define CONFIG_SYS_APP1_SIZE 256 /* Megabytes */
diff --git a/include/configs/tuda1.h b/include/configs/tuda1.h
index 1c0b3e0..853c00a 100644
--- a/include/configs/tuda1.h
+++ b/include/configs/tuda1.h
@@ -33,7 +33,7 @@
#define CONFIG_SYS_TEXT_BASE 0xF0000000
/* include common defines/options for all 8321 Keymile boards */
-#include "km8321-common.h"
+#include "km/km8321-common.h"
#define CONFIG_SYS_APP1_BASE 0xA0000000 /* PAXG */
#define CONFIG_SYS_APP1_SIZE 256 /* Megabytes */
diff --git a/include/configs/tuxa1.h b/include/configs/tuxa1.h
index 012db96..ceeb5a3 100644
--- a/include/configs/tuxa1.h
+++ b/include/configs/tuxa1.h
@@ -33,7 +33,7 @@
#define CONFIG_SYS_TEXT_BASE 0xF0000000
/* include common defines/options for all 8321 Keymile boards */
-#include "km8321-common.h"
+#include "km/km8321-common.h"
#define CONFIG_SYS_LPXF_BASE 0xA0000000 /* LPXF */
#define CONFIG_SYS_LPXF_SIZE 256 /* Megabytes */
--
1.7.1
More information about the U-Boot
mailing list