dustin
/
jenkinsagent
Archived
1
0
Fork 0
Buildroot configuration for network-booted Jenkins agent system.
This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
Go to file
Dustin fb13e26a49 rootfs: ensure /var/lib/rsyslog exists
Since Git does not track empty directories, the `/var/lib/rsyslog`
directory was not included in the overlay hierarchy, and thus missing
from the final rootfs image.  The directory needs to have a file within
it in order to be tracked.  Buildroot automatically skips copying files
named `.keep` from the overlay, presumably for this reason.
2022-03-17 10:59:26 -05:00
ci ci: Begin CI pipeline 2022-03-16 20:58:21 -05:00
configs rootfs: Persistent storage for Jenkins, Docker 2022-03-15 14:18:29 -05:00
initramfs initramfs: sync time with NTP 2022-03-15 14:18:29 -05:00
rootfs rootfs: ensure /var/lib/rsyslog exists 2022-03-17 10:59:26 -05:00
.gitignore Initial commit 2022-03-09 00:27:30 -06:00
Config.in Initial commit 2022-03-09 00:27:30 -06:00
Makefile ci: Begin CI pipeline 2022-03-16 20:58:21 -05:00
README.md Initial commit 2022-03-09 00:27:30 -06:00
cmdline.txt Use NBD server on pxe0 2022-03-15 14:18:29 -05:00
config.txt Initial commit 2022-03-09 00:27:30 -06:00
external.desc Initial commit 2022-03-09 00:27:30 -06:00
external.mk Initial commit 2022-03-09 00:27:30 -06:00

README.md

Network-Booted Jenkins Agent

Required Build Host Configuration

sudo dnf install -y \
	ncurses-devel \
	perl-ExtUtils-MakeMaker \
	perl-FindBin \
	perl-Thread-Queue \
	--
git clone git://git.buildroot.net/buildroot ~/src/buildroot

Build

Build the Initramfs

make -C ~/src/buildroot O=${PWD}/_build/initramfs BR2_EXTERNAL=${PWD} jenkinsagent_initramfs_defconfig
make -C _build/initramfs -j $(nproc)

Build the Rootfs

make -C ~/src/buildroot O=${PWD}/_build/rootfs BR2_EXTERNAL=${PWD} jenkinsagent_defconfig
make -C _build/rootfs -j $(nproc)