public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Cedric Hombourger <Cedric_Hombourger@mentor.com>
To: <isar-users@googlegroups.com>
Cc: Cedric Hombourger <Cedric_Hombourger@mentor.com>
Subject: [PATCH 6/7] meta-isar: add the qemumipsel machine
Date: Tue, 11 Jun 2019 07:38:16 +0200	[thread overview]
Message-ID: <1560231497-140-7-git-send-email-Cedric_Hombourger@mentor.com> (raw)
In-Reply-To: <1560231497-140-1-git-send-email-Cedric_Hombourger@mentor.com>

Signed-off-by: Cedric Hombourger <Cedric_Hombourger@mentor.com>
---
 meta-isar/conf/local.conf.sample                   |  1 +
 meta-isar/conf/machine/qemumipsel.conf             |  9 +++++++++
 meta-isar/conf/multiconfig/qemumipsel-stretch.conf | 17 +++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 100644 meta-isar/conf/machine/qemumipsel.conf
 create mode 100644 meta-isar/conf/multiconfig/qemumipsel-stretch.conf

diff --git a/meta-isar/conf/local.conf.sample b/meta-isar/conf/local.conf.sample
index b025a7f..871feac 100644
--- a/meta-isar/conf/local.conf.sample
+++ b/meta-isar/conf/local.conf.sample
@@ -45,6 +45,7 @@ BBMULTICONFIG = " \
     qemui386-stretch \
     qemui386-buster \
     qemuamd64-stretch \
+    qemumipsel-stretch \
     bananapi-stretch \
     de0-nano-soc-stretch \
     hikey-stretch \
diff --git a/meta-isar/conf/machine/qemumipsel.conf b/meta-isar/conf/machine/qemumipsel.conf
new file mode 100644
index 0000000..6ca0777
--- /dev/null
+++ b/meta-isar/conf/machine/qemumipsel.conf
@@ -0,0 +1,9 @@
+# This software is a part of ISAR.
+# Copyright (C) 2019 Mentor Graphics, a Siemens business
+
+KERNEL_FILE ?= "vmlinux"
+
+MACHINE_SERIAL ?= "ttyS0"
+BAUDRATE_TTY ?= "115200"
+
+IMAGE_TYPE ?= "ext4-img"
diff --git a/meta-isar/conf/multiconfig/qemumipsel-stretch.conf b/meta-isar/conf/multiconfig/qemumipsel-stretch.conf
new file mode 100644
index 0000000..1fe2004
--- /dev/null
+++ b/meta-isar/conf/multiconfig/qemumipsel-stretch.conf
@@ -0,0 +1,17 @@
+# This software is a part of ISAR.
+# Copyright (C) 2019 Mentor Graphics, a Siemens busines
+
+MACHINE ?= "qemumipsel"
+
+DISTRO ?= "debian-stretch"
+DISTRO_ARCH ?= "mipsel"
+
+KERNEL_NAME ?= "4kc-malta"
+
+QEMU_ROOTFS_DEV ?= "sda"
+
+QEMU_ARCH ?= "mipsel"
+QEMU_MACHINE ?= "malta"
+QEMU_CPU ?= "24Kc"
+QEMU_DISK_ARGS ?= "-drive file=##ROOTFS_IMAGE##,format=raw"
+QEMU_KARGS ?= "nokaslr"
-- 
2.11.0


  parent reply	other threads:[~2019-06-11  5:38 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-11  5:38 [PATCH 0/7] Add mipsel architecture and QEMU machine Cedric Hombourger
2019-06-11  5:38 ` [PATCH 1/7] image.bbclass: introduce KERNEL_FILE (defaults to vmlinuz) Cedric Hombourger
2019-06-11  5:38 ` [PATCH 2/7] start_vm: append kernel arguments specified in QEMU_KARGS Cedric Hombourger
2019-06-11  5:38 ` [PATCH 3/7] recipes-devtools/*-apt: add support for the mipsel architecture Cedric Hombourger
2019-06-11  5:38 ` [PATCH 4/7] recipes-kernel/linux: " Cedric Hombourger
2019-06-11  5:38 ` [PATCH 5/7] start_vm: add mipsel to the list of supported architectures Cedric Hombourger
2019-06-11  5:38 ` Cedric Hombourger [this message]
2019-06-11  5:38 ` [PATCH 7/7] ci_build: add qemumipsel-stretch to build targets Cedric Hombourger
2019-06-11  8:42   ` Henning Schild
2019-06-11  8:44     ` Hombourger, Cedric
2019-06-11 11:07       ` Henning Schild
2019-06-11 12:50         ` [PATCH v2 0/9] Add mipsel architecture and QEMU machine Cedric Hombourger
2019-06-11 12:50           ` [PATCH v2 1/9] image.bbclass: introduce KERNEL_FILE (defaults to vmlinuz) Cedric Hombourger
2019-06-11 12:50           ` [PATCH v2 2/9] start_vm: append kernel arguments specified in QEMU_KARGS Cedric Hombourger
2019-06-11 12:50           ` [PATCH v2 3/9] recipes-devtools/*-apt: add support for the mipsel architecture Cedric Hombourger
2019-06-11 12:50           ` [PATCH v2 4/9] recipes-kernel/linux: " Cedric Hombourger
2019-06-11 12:56             ` [PATCH v2 5/9] start_vm: add mipsel to the list of supported architectures Cedric Hombourger
2019-06-11 12:56               ` [PATCH v2 6/9] meta-isar: add the qemumipsel machine Cedric Hombourger
2019-06-11 12:56               ` [PATCH v2 7/9] ci_build: add qemumipsel-stretch to build targets Cedric Hombourger
2019-06-11 12:56               ` [PATCH v2 8/9] meta-isar: add qemumipsel-buster configuration Cedric Hombourger
2019-06-11 12:56               ` [PATCH v2 9/9] ci_build: add qemumipsel-buster configuration to build targets Cedric Hombourger
2019-06-11 12:59           ` [PATCH v2 0/9] Add mipsel architecture and QEMU machine chombourger
2019-06-12  9:30             ` Claudius Heine
2019-06-12  9:44               ` chombourger
2019-06-12 11:21                 ` Baurzhan Ismagulov
2019-06-12 11:27                 ` Claudius Heine
2019-06-12 17:23           ` Baurzhan Ismagulov
2019-06-12 17:43             ` chombourger
2019-06-11  7:36 ` [PATCH 0/7] " Claudius Heine

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1560231497-140-7-git-send-email-Cedric_Hombourger@mentor.com \
    --to=cedric_hombourger@mentor.com \
    --cc=isar-users@googlegroups.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox