summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README8
-rw-r--r--config/arch/x86_64.in1
-rw-r--r--config/debug/duma.in4
-rw-r--r--scripts/build/debug/200-duma.sh7
4 files changed, 12 insertions, 8 deletions
diff --git a/README b/README
index 855b9d7..97be369 100644
--- a/README
+++ b/README
@@ -29,9 +29,9 @@ Sending a bug report
--------------------
If you need to send a bug report, please send a mail with subject
- prefixed with "[CT_NG]" with to following destinations:
- TO: yann.morin.1998 (at) anciens.enib.fr
- CC: crossgcc (at) sourceware.org
+prefixed with "[CT_NG]" with to following destinations:
+ TO: yann.morin.1998 (at) anciens.enib.fr
+ CC: crossgcc (at) sourceware.org
Sending patches
---------------
@@ -39,7 +39,7 @@ Sending patches
If you want to enhance crosstool-NG, there's a to-do list in the TODO file.
Patches should come with the appropriate SoB line. A SoB line is typically
- something like:
+something like:
Signed-off-by: John DOE <john.doe@somewhere.net>
The SoB line is clearly described in Documentation/SubmittingPatches , section
diff --git a/config/arch/x86_64.in b/config/arch/x86_64.in
index 9e3f5d0..90c831f 100644
--- a/config/arch/x86_64.in
+++ b/config/arch/x86_64.in
@@ -2,6 +2,7 @@
config ARCH_x86_64
select ARCH_64
+ select ARCH_USE_MMU
select ARCH_SUPPORT_ARCH
select ARCH_SUPPORT_CPU
select ARCH_SUPPORT_TUNE
diff --git a/config/debug/duma.in b/config/debug/duma.in
index 8c8caa4..987be65 100644
--- a/config/debug/duma.in
+++ b/config/debug/duma.in
@@ -39,7 +39,7 @@ config DUMA_V_2_5_14
config DUMA_V_2_5_15
bool
- prompt "2.5.15"
+ prompt "2_5_15"
# CT_INSERT_VERSION_ABOVE
# Don't remove above line!
@@ -51,6 +51,6 @@ config DUMA_VERSION
default "2_5_8" if DUMA_V_2_5_8
default "2_5_12" if DUMA_V_2_5_12
default "2_5_14" if DUMA_V_2_5_14
- default "2.5.15" if DUMA_V_2_5_15
+ default "2_5_15" if DUMA_V_2_5_15
# CT_INSERT_VERSION_STRING_ABOVE
# Don't remove above line!
diff --git a/scripts/build/debug/200-duma.sh b/scripts/build/debug/200-duma.sh
index 29bdec6..225d00c 100644
--- a/scripts/build/debug/200-duma.sh
+++ b/scripts/build/debug/200-duma.sh
@@ -1,8 +1,11 @@
# Build script for D.U.M.A.
do_debug_duma_get() {
- CT_GetFile "duma_${CT_DUMA_VERSION}" http://mesh.dl.sourceforge.net/sourceforge/duma/
- # Downloading from sourceforge leaves garbage, cleanup
+ # Downloading an non-existing file from sourceforge will give you an
+ # HTML file containing an error message, instead of returning a 404.
+ # Sigh...
+ CT_GetFile "duma_${CT_DUMA_VERSION}" .tar.gz http://mesh.dl.sourceforge.net/sourceforge/duma/
+ # Downloading from sourceforge may leave garbage, cleanup
CT_DoExecLog ALL rm -f "${CT_TARBALLS_DIR}/showfiles.php"*
}