mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
@@ -116,20 +116,25 @@ comment "openrc needs a toolchain w/ dynamic library"
|
||||
config BR2_INIT_SYSTEMD
|
||||
bool "systemd"
|
||||
depends on BR2_PACKAGE_SYSTEMD_ARCH_SUPPORTS
|
||||
depends on BR2_TOOLCHAIN_USES_GLIBC
|
||||
depends on BR2_TOOLCHAIN_HAS_SSP
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_STATIC_LIBS
|
||||
depends on BR2_TOOLCHAIN_USES_GLIBC
|
||||
depends on BR2_TOOLCHAIN_HAS_SSP
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
||||
depends on BR2_HOST_GCC_AT_LEAST_5
|
||||
select BR2_ROOTFS_MERGED_USR
|
||||
select BR2_PACKAGE_SYSTEMD
|
||||
|
||||
comment "systemd needs a glibc toolchain w/ SSP, headers >= 3.10"
|
||||
comment "systemd needs a glibc toolchain w/ SSP, headers >= 3.10, host and target gcc >= 5"
|
||||
depends on BR2_PACKAGE_SYSTEMD_ARCH_SUPPORTS
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_USES_GLIBC || \
|
||||
!BR2_TOOLCHAIN_HAS_SSP || \
|
||||
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
|
||||
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10 || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_5 || \
|
||||
!BR2_HOST_GCC_AT_LEAST_5
|
||||
|
||||
config BR2_INIT_NONE
|
||||
bool "None"
|
||||
@@ -348,16 +353,16 @@ config BR2_TARGET_GENERIC_GETTY_BAUDRATE
|
||||
config BR2_TARGET_GENERIC_GETTY_TERM
|
||||
string "TERM environment variable"
|
||||
default "vt100"
|
||||
# currently observed only by busybox and sysvinit
|
||||
depends on BR2_INIT_BUSYBOX || BR2_INIT_SYSV
|
||||
# currently observed by all but systemd
|
||||
depends on !BR2_INIT_SYSTEMD
|
||||
help
|
||||
Specify a TERM type.
|
||||
|
||||
config BR2_TARGET_GENERIC_GETTY_OPTIONS
|
||||
string "other options to pass to getty"
|
||||
default ""
|
||||
# currently observed only by busybox and sysvinit
|
||||
depends on BR2_INIT_BUSYBOX || BR2_INIT_SYSV
|
||||
# currently observed by all but systemd
|
||||
depends on !BR2_INIT_SYSTEMD
|
||||
help
|
||||
Any other flags you want to pass to getty,
|
||||
Refer to getty --help for details.
|
||||
@@ -377,7 +382,8 @@ config BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW
|
||||
config BR2_SYSTEM_DHCP
|
||||
string "Network interface to configure through DHCP"
|
||||
default ""
|
||||
depends on BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_IFUPDOWN || BR2_PACKAGE_SYSTEMD_NETWORKD
|
||||
depends on BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_IFUPDOWN || \
|
||||
BR2_PACKAGE_SYSTEMD_NETWORKD || BR2_PACKAGE_NETIFRC
|
||||
help
|
||||
Enter here the name of the network interface (E.G. eth0) to
|
||||
automatically configure through DHCP at bootup.
|
||||
@@ -388,14 +394,16 @@ config BR2_SYSTEM_DHCP
|
||||
overwrite /etc/network/interfaces or add a networkd
|
||||
configuration file.
|
||||
|
||||
comment "automatic network configuration via DHCP needs ifupdown or busybox or networkd"
|
||||
depends on !(BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_IFUPDOWN || BR2_PACKAGE_SYSTEMD_NETWORKD)
|
||||
comment "automatic network configuration via DHCP needs ifupdown or busybox or networkd or netifrc"
|
||||
depends on !(BR2_PACKAGE_BUSYBOX || BR2_PACKAGE_IFUPDOWN || \
|
||||
BR2_PACKAGE_SYSTEMD_NETWORKD || BR2_PACKAGE_NETIFRC)
|
||||
|
||||
endif # BR2_ROOTFS_SKELETON_DEFAULT
|
||||
|
||||
config BR2_SYSTEM_DEFAULT_PATH
|
||||
string "Set the system's default PATH"
|
||||
default "/bin:/sbin:/usr/bin:/usr/sbin"
|
||||
default "/usr/bin:/usr/sbin" if BR2_ROOTFS_MERGED_USR
|
||||
default "/bin:/sbin:/usr/bin:/usr/sbin" if !BR2_ROOTFS_MERGED_USR
|
||||
help
|
||||
Sets the system's default PATH. It is being used in
|
||||
/etc/profile in the skeleton-init-common package and by some
|
||||
@@ -492,6 +500,8 @@ config BR2_TARGET_LOCALTIME
|
||||
Pacific/Wallis
|
||||
...
|
||||
|
||||
Set to empty to not install a default time zone.
|
||||
|
||||
endif # BR2_TARGET_TZ_INFO
|
||||
|
||||
config BR2_ROOTFS_USERS_TABLES
|
||||
|
||||
Reference in New Issue
Block a user