aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2012-07-04 11:18:47 +0000
committerPeter Maydell <peter.maydell@linaro.org>2012-09-05 14:42:27 +0100
commit4f01a42c7a3b3da107cebd0e5d4383f1a8265e2e (patch)
treef025414e869efa56b0cef10f4e7d2c7a57ba2ff4
parent0c5be2ade45ec6c49397ee09a0e1a94d4d624758 (diff)
hw/nseries.c: Drop QEMU_VERSION from atags
(Why?)
-rw-r--r--hw/nseries.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/nseries.c b/hw/nseries.c
index 1f60c86052..e86901c1d8 100644
--- a/hw/nseries.c
+++ b/hw/nseries.c
@@ -1395,8 +1395,7 @@ static int n8x0_atag_setup(void *p, int model)
stw_raw(w ++, 24); /* u16 len */
strcpy((void *) w, "hw-build"); /* char component[12] */
w += 6;
- strcpy((void *) w, "QEMU ");
- pstrcat((void *) w, 12, qemu_get_version()); /* char version[12] */
+ strcpy((void *) w, "QEMU"); /* char version[12] */
w += 6;
tag = (model == 810) ? "1.1.10-qemu" : "1.1.6-qemu";