Skip to content

Commit

Permalink
configs: experimental ntpd container [amd64, arm64]
Browse files Browse the repository at this point in the history
Signed-off-by: Joachim Wiberg <[email protected]>
  • Loading branch information
troglobit committed Jan 22, 2024
1 parent 3501357 commit 8f55042
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
packages: write
strategy:
matrix:
app: [curios]
app: [curios, curios-ntpd]
uses: ./.github/workflows/build-push.yml
with:
app: ${{ matrix.app }}
Expand Down
30 changes: 30 additions & 0 deletions configs/curios-ntpd_amd64_defconfig
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"
31 changes: 31 additions & 0 deletions configs/curios-ntpd_arm64_defconfig
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"

0 comments on commit 8f55042

Please sign in to comment.