mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 05:06:39 +00:00
system: move init system option above /dev management.
The option to choose init system was below the one for /dev management. As Systemd forces the use of udev, it is logical to swap them. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
381e215d49
commit
0b90a82cda
@ -66,35 +66,6 @@ config BR2_TARGET_GENERIC_PASSWD_METHOD
|
|||||||
default "sha-256" if BR2_TARGET_GENERIC_PASSWD_SHA256
|
default "sha-256" if BR2_TARGET_GENERIC_PASSWD_SHA256
|
||||||
default "sha-512" if BR2_TARGET_GENERIC_PASSWD_SHA512
|
default "sha-512" if BR2_TARGET_GENERIC_PASSWD_SHA512
|
||||||
|
|
||||||
choice
|
|
||||||
prompt "/dev management"
|
|
||||||
default BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS
|
|
||||||
|
|
||||||
config BR2_ROOTFS_DEVICE_CREATION_STATIC
|
|
||||||
bool "Static using device table"
|
|
||||||
|
|
||||||
config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS
|
|
||||||
bool "Dynamic using devtmpfs only"
|
|
||||||
|
|
||||||
config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV
|
|
||||||
bool "Dynamic using mdev"
|
|
||||||
select BR2_PACKAGE_BUSYBOX
|
|
||||||
|
|
||||||
config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
|
|
||||||
bool "Dynamic using udev"
|
|
||||||
depends on BR2_LARGEFILE # udev
|
|
||||||
depends on BR2_USE_WCHAR # udev
|
|
||||||
depends on !BR2_PREFER_STATIC_LIB # udev -> kmod
|
|
||||||
select BR2_PACKAGE_UDEV
|
|
||||||
|
|
||||||
comment "udev needs a toolchain w/ largefile, wchar"
|
|
||||||
depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)
|
|
||||||
|
|
||||||
comment "udev doesn't work with 'prefer static libraries'"
|
|
||||||
depends on BR2_PREFER_STATIC_LIB
|
|
||||||
|
|
||||||
endchoice
|
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "Init system"
|
prompt "Init system"
|
||||||
default BR2_INIT_BUSYBOX
|
default BR2_INIT_BUSYBOX
|
||||||
@ -129,6 +100,35 @@ config BR2_INIT_NONE
|
|||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "/dev management"
|
||||||
|
default BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS
|
||||||
|
|
||||||
|
config BR2_ROOTFS_DEVICE_CREATION_STATIC
|
||||||
|
bool "Static using device table"
|
||||||
|
|
||||||
|
config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS
|
||||||
|
bool "Dynamic using devtmpfs only"
|
||||||
|
|
||||||
|
config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV
|
||||||
|
bool "Dynamic using mdev"
|
||||||
|
select BR2_PACKAGE_BUSYBOX
|
||||||
|
|
||||||
|
config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
|
||||||
|
bool "Dynamic using udev"
|
||||||
|
depends on BR2_LARGEFILE # udev
|
||||||
|
depends on BR2_USE_WCHAR # udev
|
||||||
|
depends on !BR2_PREFER_STATIC_LIB # udev -> kmod
|
||||||
|
select BR2_PACKAGE_UDEV
|
||||||
|
|
||||||
|
comment "udev needs a toolchain w/ largefile, wchar"
|
||||||
|
depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)
|
||||||
|
|
||||||
|
comment "udev doesn't work with 'prefer static libraries'"
|
||||||
|
depends on BR2_PREFER_STATIC_LIB
|
||||||
|
|
||||||
|
endchoice
|
||||||
|
|
||||||
config BR2_ROOTFS_DEVICE_TABLE
|
config BR2_ROOTFS_DEVICE_TABLE
|
||||||
string "Path to the permission tables"
|
string "Path to the permission tables"
|
||||||
default "system/device_table.txt"
|
default "system/device_table.txt"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user