-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
configs: experimental ntpd container [amd64, arm64]
Signed-off-by: Joachim Wiberg <[email protected]>
- Loading branch information
Showing
3 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
BR2_x86_64=y | ||
BR2_TOOLCHAIN_EXTERNAL=y | ||
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_UCLIBC_STABLE=y | ||
BR2_DL_DIR="${BR2_EXTERNAL_CURIOS_PATH}/dl" | ||
BR2_CCACHE=y | ||
BR2_CCACHE_DIR="${BR2_EXTERNAL_CURIOS_PATH}/.ccache" | ||
BR2_TARGET_GENERIC_HOSTNAME="curiOS" | ||
BR2_TARGET_GENERIC_ISSUE="Welcome to curiOS" | ||
BR2_TARGET_GENERIC_ROOT_PASSWD="secret" | ||
BR2_ROOTFS_OVERLAY="$(BR2_EXTERNAL_CURIOS_PATH)/board/container/rootfs" | ||
BR2_ROOTFS_POST_BUILD_SCRIPT="$(BR2_EXTERNAL_CURIOS_PATH)/board/container/post-build.sh" | ||
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y | ||
BR2_PACKAGE_NETOPEER2=y | ||
BR2_PACKAGE_NETOPEER2_CLI=y | ||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set | ||
BR2_PACKAGE_NTP=y | ||
BR2_PACKAGE_NTP_SNTP=y | ||
BR2_PACKAGE_NTP_NTP_KEYGEN=y | ||
BR2_PACKAGE_NTP_NTPD_ATOM_PPS=y | ||
BR2_PACKAGE_NTP_NTPDC=y | ||
BR2_PACKAGE_NTP_NTPQ=y | ||
BR2_PACKAGE_NTP_NTPTIME=y | ||
BR2_PACKAGE_NTP_TICKADJ=y | ||
# BR2_PACKAGE_URANDOM_SCRIPTS is not set | ||
BR2_TARGET_ROOTFS_OCI=y | ||
BR2_TARGET_ROOTFS_OCI_AUTHOR="curiOS" | ||
BR2_TARGET_ROOTFS_OCI_TAG="edge" | ||
BR2_TARGET_ROOTFS_OCI_ENTRYPOINT="/sbin/init" | ||
BR2_TARGET_ROOTFS_OCI_PORTS="22/tcp 161/tcp 161/udp" | ||
BR2_TARGET_ROOTFS_OCI_LABELS=".url=https://github.com/kernelkit/curiOS .title=curiOS" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
BR2_aarch64=y | ||
BR2_TOOLCHAIN_EXTERNAL=y | ||
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y | ||
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_UCLIBC_STABLE=y | ||
BR2_DL_DIR="${BR2_EXTERNAL_CURIOS_PATH}/dl" | ||
BR2_CCACHE=y | ||
BR2_CCACHE_DIR="${BR2_EXTERNAL_CURIOS_PATH}/.ccache" | ||
BR2_TARGET_GENERIC_HOSTNAME="curiOS" | ||
BR2_TARGET_GENERIC_ISSUE="Welcome to curiOS" | ||
BR2_TARGET_GENERIC_ROOT_PASSWD="secret" | ||
BR2_ROOTFS_OVERLAY="$(BR2_EXTERNAL_CURIOS_PATH)/board/container/rootfs" | ||
BR2_ROOTFS_POST_BUILD_SCRIPT="$(BR2_EXTERNAL_CURIOS_PATH)/board/container/post-build.sh" | ||
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y | ||
BR2_PACKAGE_NETOPEER2=y | ||
BR2_PACKAGE_NETOPEER2_CLI=y | ||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set | ||
BR2_PACKAGE_NTP=y | ||
BR2_PACKAGE_NTP_SNTP=y | ||
BR2_PACKAGE_NTP_NTP_KEYGEN=y | ||
BR2_PACKAGE_NTP_NTPD_ATOM_PPS=y | ||
BR2_PACKAGE_NTP_NTPDC=y | ||
BR2_PACKAGE_NTP_NTPQ=y | ||
BR2_PACKAGE_NTP_NTPTIME=y | ||
BR2_PACKAGE_NTP_TICKADJ=y | ||
# BR2_PACKAGE_URANDOM_SCRIPTS is not set | ||
BR2_TARGET_ROOTFS_OCI=y | ||
BR2_TARGET_ROOTFS_OCI_AUTHOR="curiOS" | ||
BR2_TARGET_ROOTFS_OCI_TAG="edge" | ||
BR2_TARGET_ROOTFS_OCI_ENTRYPOINT="/sbin/init" | ||
BR2_TARGET_ROOTFS_OCI_PORTS="22/tcp 161/tcp 161/udp" | ||
BR2_TARGET_ROOTFS_OCI_LABELS=".url=https://github.com/kernelkit/curiOS .title=curiOS" |