Skip to content

use github workflow actions to build openwrt

License

Notifications You must be signed in to change notification settings

codiy1992/build-openwrt

Repository files navigation

build-openwrt

use github workflow actions to build openwrt

Build with Docker Locally

Volumes Binding for Docker must be case-sensitive, [case-insensitive by default On MacOS][1], You can use Disk Utility tool to Create an case-sensitive volume and use it to binding.

ext4 vs squashfs

grub vs efi

Verify the Linux Kernel for Container Compatibility

  • Verify the Linux Kernel directly
wget https:/moby/moby/raw/master/contrib/check-config.sh
chmod +x check-config.sh
./check-config.sh
  • Verify the Linux Kernel from a .config file
# dump config into file
zcat /proc/config.gz > kernel.config
# verify
./check-config.sh kernel.config

references