├── .github ├── CODEOWNERS └── workflows │ ├── project_automation.yml │ └── shellcheck.yml ├── .gitignore ├── Jenkinsfile-ISO ├── LICENSE ├── README.md ├── boot └── loader.conf ├── common_config ├── autologin.sh ├── base-setting.sh ├── base-setting │ └── patches │ │ ├── boot │ │ └── loader.conf.d │ │ │ ├── amdtemp.conf │ │ │ ├── coretemp.conf │ │ │ └── if_re.conf │ │ └── etc │ │ ├── devfs.rules.extra │ │ └── fstab.extra ├── finalize.sh ├── gitpkg.sh └── setuser.sh ├── desktop_config ├── gershwin.sh ├── mate.sh ├── mate_oem.sh ├── plasma.sh └── xfce.sh ├── init.sh.in ├── packages ├── base ├── common ├── drivers ├── gershwin ├── mate ├── mate_oem ├── plasma ├── vital │ ├── base │ ├── common │ ├── gershwin │ ├── mate │ ├── mate_oem │ ├── plasma │ └── xfce └── xfce ├── pkg ├── GhostBSD.conf ├── GhostBSD_Testing.conf └── GhostBSD_Unstable.conf ├── rc.in └── script ├── install-boot.sh └── mkisoimages.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/project_automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/.github/workflows/project_automation.yml -------------------------------------------------------------------------------- /.github/workflows/shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/.github/workflows/shellcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | custom 2 | efi 3 | .idea -------------------------------------------------------------------------------- /Jenkinsfile-ISO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/Jenkinsfile-ISO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/README.md -------------------------------------------------------------------------------- /boot/loader.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/boot/loader.conf -------------------------------------------------------------------------------- /common_config/autologin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/common_config/autologin.sh -------------------------------------------------------------------------------- /common_config/base-setting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/common_config/base-setting.sh -------------------------------------------------------------------------------- /common_config/base-setting/patches/boot/loader.conf.d/amdtemp.conf: -------------------------------------------------------------------------------- 1 | amdtemp_load="YES" 2 | -------------------------------------------------------------------------------- /common_config/base-setting/patches/boot/loader.conf.d/coretemp.conf: -------------------------------------------------------------------------------- 1 | coretemp_load="YES" 2 | -------------------------------------------------------------------------------- /common_config/base-setting/patches/boot/loader.conf.d/if_re.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/common_config/base-setting/patches/boot/loader.conf.d/if_re.conf -------------------------------------------------------------------------------- /common_config/base-setting/patches/etc/devfs.rules.extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/common_config/base-setting/patches/etc/devfs.rules.extra -------------------------------------------------------------------------------- /common_config/base-setting/patches/etc/fstab.extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/common_config/base-setting/patches/etc/fstab.extra -------------------------------------------------------------------------------- /common_config/finalize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/common_config/finalize.sh -------------------------------------------------------------------------------- /common_config/gitpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/common_config/gitpkg.sh -------------------------------------------------------------------------------- /common_config/setuser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/common_config/setuser.sh -------------------------------------------------------------------------------- /desktop_config/gershwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/desktop_config/gershwin.sh -------------------------------------------------------------------------------- /desktop_config/mate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/desktop_config/mate.sh -------------------------------------------------------------------------------- /desktop_config/mate_oem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/desktop_config/mate_oem.sh -------------------------------------------------------------------------------- /desktop_config/plasma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/desktop_config/plasma.sh -------------------------------------------------------------------------------- /desktop_config/xfce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/desktop_config/xfce.sh -------------------------------------------------------------------------------- /init.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/init.sh.in -------------------------------------------------------------------------------- /packages/base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/base -------------------------------------------------------------------------------- /packages/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/common -------------------------------------------------------------------------------- /packages/drivers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/drivers -------------------------------------------------------------------------------- /packages/gershwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/gershwin -------------------------------------------------------------------------------- /packages/mate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/mate -------------------------------------------------------------------------------- /packages/mate_oem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/mate_oem -------------------------------------------------------------------------------- /packages/plasma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/plasma -------------------------------------------------------------------------------- /packages/vital/base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/vital/base -------------------------------------------------------------------------------- /packages/vital/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/vital/common -------------------------------------------------------------------------------- /packages/vital/gershwin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/vital/mate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/vital/mate -------------------------------------------------------------------------------- /packages/vital/mate_oem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/vital/mate_oem -------------------------------------------------------------------------------- /packages/vital/plasma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/vital/plasma -------------------------------------------------------------------------------- /packages/vital/xfce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/vital/xfce -------------------------------------------------------------------------------- /packages/xfce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/packages/xfce -------------------------------------------------------------------------------- /pkg/GhostBSD.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/pkg/GhostBSD.conf -------------------------------------------------------------------------------- /pkg/GhostBSD_Testing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/pkg/GhostBSD_Testing.conf -------------------------------------------------------------------------------- /pkg/GhostBSD_Unstable.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/pkg/GhostBSD_Unstable.conf -------------------------------------------------------------------------------- /rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/rc.in -------------------------------------------------------------------------------- /script/install-boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/script/install-boot.sh -------------------------------------------------------------------------------- /script/mkisoimages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbsd/ghostbsd-build/HEAD/script/mkisoimages.sh --------------------------------------------------------------------------------