All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 0/2] Make systemd as default init manager
@ 2019-07-04 13:45 kai.kang
  2019-07-04 13:45   ` [oe-core][PATCH " kai.kang
                   ` (2 more replies)
  0 siblings, 3 replies; 32+ messages in thread
From: kai.kang @ 2019-07-04 13:45 UTC (permalink / raw)
  To: richard.purdie; +Cc: poky, openembedded-core

From: Kai Kang <kai.kang@windriver.com>

v7:
* move the main logical to oe-core that not only poky could use it
* rename POKY_INIT_MANAGER with INIT_MANAGER
* remove init-manager-systemd-compat.inc which is not a real separated init manager

Tested with
1
for arch in qemux86 qemux86-64 qemuarm qemuarm64 qemuppc qemumips qemumips64; do
    MACHINE=$arch bitbake core-image-minimal
done


2 run

  bitbake core-image-full-cmdline -c testimage

without error with the auto.conf from Yocto autobuilder:

$ cat conf/auto.conf
MACHINE = "qemux86"
DISTRO = "poky"
SDKMACHINE = "x86_64"
PACKAGE_CLASSES = "package_rpm package_deb package_ipk"
#DL_DIR =
'/srv/autobuilder/autobuilder.yoctoproject.org/current_sources'
PRSERV_HOST = 'localhost:0'
#SSTATE_DIR ?=
'/srv/autobuilder/autobuilder.yoctoproject.org/pub/sstate'
TCLIBC = 'musl'
QEMU_USE_KVM = 'True'
INHERIT += 'report-error'
PREMIRRORS = ''
BB_GENERATE_MIRROR_TARBALLS = '1'
#BB_NUMBER_THREADS = '16'
#PARALLEL_MAKE = '-j 16'
BB_TASK_NICE_LEVEL = '5'
BB_TASK_NICE_LEVEL_task-testimage = '0'
BB_TASK_IONICE_LEVEL = '2.7'
BB_TASK_IONICE_LEVEL_task-testimage = '2.1'
INHERIT += 'testimage'
TEST_QEMUBOOT_TIMEOUT = '1500'
SANITY_TESTED_DISTROS = ''
SDK_EXT_TYPE = 'minimal'
SDK_INCLUDE_TOOLCHAIN = '1'
BB_DISKMON_DIRS = 'STOPTASKS,${TMPDIR},1G,100K STOPTASKS,${DL_DIR},1G
STOPTASKS,${SSTATE_DIR},1G STOPTASKS,/tmp,100M,100K
ABORT,${TMPDIR},100M,1K ABORT,${DL_DIR},100M ABORT,${SSTATE_DIR},100M
ABORT,/tmp,10M,1K'


Kai Kang (2):
  defaultsetup.conf: enable select init manager
  poky.conf: make systemd as default init manager

 meta-poky/conf/distro/poky-tiny.conf                   | 8 ++------
 meta-poky/conf/distro/poky.conf                        | 5 +++++
 meta/conf/distro/defaultsetup.conf                     | 3 +++
 meta/conf/distro/include/init-manager-mdev-busybox.inc | 7 +++++++
 meta/conf/distro/include/init-manager-systemd.inc      | 6 ++++++
 meta/conf/distro/include/init-manager-sysvinit.inc     | 6 ++++++
 6 files changed, 29 insertions(+), 6 deletions(-)
 create mode 100644 meta/conf/distro/include/init-manager-mdev-busybox.inc
 create mode 100644 meta/conf/distro/include/init-manager-systemd.inc
 create mode 100644 meta/conf/distro/include/init-manager-sysvinit.inc

--
2.18.0



^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2019-07-25 11:13 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-04 13:45 [PATCH v7 0/2] Make systemd as default init manager kai.kang
2019-07-04 13:45 ` [PATCH 1/2] defaultsetup.conf: enable select " kai.kang
2019-07-04 13:45   ` [oe-core][PATCH " kai.kang
2019-07-06  9:53   ` [PATCH " Adrian Bunk
2019-07-06  9:53     ` [OE-core] [oe-core][PATCH " Adrian Bunk
2019-07-06 12:08     ` [PATCH " Adrian Bunk
2019-07-06 12:08       ` [OE-core] [oe-core][PATCH " Adrian Bunk
2019-07-06 12:31     ` [PATCH " richard.purdie
2019-07-06 12:31       ` [OE-core] [oe-core][PATCH " richard.purdie
2019-07-08  9:28       ` [PATCH " Kang Kai
2019-07-08  9:28         ` [OE-core] [oe-core][PATCH " Kang Kai
2019-07-08 10:01       ` [PATCH " ChenQi
2019-07-08 10:01         ` [OE-core] [oe-core][PATCH " ChenQi
2019-07-08  2:01     ` [PATCH " Kang Kai
2019-07-08  2:01       ` [OE-core] [oe-core][PATCH " Kang Kai
2019-07-08  2:13       ` [PATCH " Kang Kai
2019-07-08  2:13         ` [OE-core] [oe-core][PATCH " Kang Kai
2019-07-19 21:35   ` [PATCH " Burton, Ross
2019-07-19 21:35     ` [OE-core] [oe-core][PATCH " Burton, Ross
2019-07-19 22:28     ` [PATCH " richard.purdie
2019-07-19 22:28       ` [OE-core] [oe-core][PATCH " richard.purdie
2019-07-22  1:37       ` [PATCH " Kang Kai
2019-07-22  1:37         ` [OE-core] [oe-core][PATCH " Kang Kai
2019-07-22 23:26         ` [PATCH " Mittal, Anuj
2019-07-22 23:26           ` [OE-core] [oe-core][PATCH " Mittal, Anuj
2019-07-23 19:30           ` [PATCH " richard.purdie
2019-07-23 19:30             ` [OE-core] [oe-core][PATCH " richard.purdie
2019-07-25 11:10             ` [PATCH " Kang Kai
2019-07-25 11:10               ` [OE-core] [oe-core][PATCH " Kang Kai
2019-07-04 13:45 ` [meta-poky][PATCH 2/2] poky.conf: make systemd as default " kai.kang
2019-07-04 22:34   ` richard.purdie
2019-07-04 15:00 ` ✗ patchtest: failure for Make " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.