├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── composite ├── custom.sh ├── distribution.sh ├── factory.sh ├── hotfix.sh ├── nightly.sh ├── pkgver.sh ├── util.sh └── watch.sh ├── config └── 25.7 │ ├── SMP │ ├── SMP-ARM │ ├── aux.conf │ ├── base.obsolete.amd64 │ ├── base.plist.amd64 │ ├── build.conf │ ├── extras.conf │ ├── kernel.debug │ ├── kernel.default │ ├── make.conf │ ├── plugins.conf │ ├── ports.conf │ ├── skim.conf │ └── src.conf ├── device ├── A10.conf ├── AMD64VM.conf ├── ARM64.conf ├── ARM64VM.conf ├── R4S.conf ├── ROCKPRO64.conf └── RPI.conf └── scripts ├── parse_ports_log.py ├── pkg_fingerprint.sh └── pkg_sign.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: maurice-w 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/README.md -------------------------------------------------------------------------------- /composite/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/composite/custom.sh -------------------------------------------------------------------------------- /composite/distribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/composite/distribution.sh -------------------------------------------------------------------------------- /composite/factory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/composite/factory.sh -------------------------------------------------------------------------------- /composite/hotfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/composite/hotfix.sh -------------------------------------------------------------------------------- /composite/nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/composite/nightly.sh -------------------------------------------------------------------------------- /composite/pkgver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/composite/pkgver.sh -------------------------------------------------------------------------------- /composite/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/composite/util.sh -------------------------------------------------------------------------------- /composite/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/composite/watch.sh -------------------------------------------------------------------------------- /config/25.7/SMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/SMP -------------------------------------------------------------------------------- /config/25.7/SMP-ARM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/SMP-ARM -------------------------------------------------------------------------------- /config/25.7/aux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/aux.conf -------------------------------------------------------------------------------- /config/25.7/base.obsolete.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/base.obsolete.amd64 -------------------------------------------------------------------------------- /config/25.7/base.plist.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/base.plist.amd64 -------------------------------------------------------------------------------- /config/25.7/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/build.conf -------------------------------------------------------------------------------- /config/25.7/extras.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/extras.conf -------------------------------------------------------------------------------- /config/25.7/kernel.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/kernel.debug -------------------------------------------------------------------------------- /config/25.7/kernel.default: -------------------------------------------------------------------------------- 1 | # included from kernel.default 2 | nomakeoptions DEBUG 3 | -------------------------------------------------------------------------------- /config/25.7/make.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/make.conf -------------------------------------------------------------------------------- /config/25.7/plugins.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/plugins.conf -------------------------------------------------------------------------------- /config/25.7/ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/ports.conf -------------------------------------------------------------------------------- /config/25.7/skim.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/skim.conf -------------------------------------------------------------------------------- /config/25.7/src.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/config/25.7/src.conf -------------------------------------------------------------------------------- /device/A10.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/device/A10.conf -------------------------------------------------------------------------------- /device/AMD64VM.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/device/AMD64VM.conf -------------------------------------------------------------------------------- /device/ARM64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/device/ARM64.conf -------------------------------------------------------------------------------- /device/ARM64VM.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/device/ARM64VM.conf -------------------------------------------------------------------------------- /device/R4S.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/device/R4S.conf -------------------------------------------------------------------------------- /device/ROCKPRO64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/device/ROCKPRO64.conf -------------------------------------------------------------------------------- /device/RPI.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/device/RPI.conf -------------------------------------------------------------------------------- /scripts/parse_ports_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/scripts/parse_ports_log.py -------------------------------------------------------------------------------- /scripts/pkg_fingerprint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/scripts/pkg_fingerprint.sh -------------------------------------------------------------------------------- /scripts/pkg_sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurice-w/opnsense-vm-images/HEAD/scripts/pkg_sign.sh --------------------------------------------------------------------------------