mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Bring in two fixes for TinyBSD:
- Add the bind mtree to the TinyBSD build so that files can be installed there (else the build fails) - Change GEOM_GPT to GEOM_PART_GPT since that had been renamed in current. The kernel configuration provided by TinyBSD will not build without these changes. PR: misc/115484 PR: misc/115405 Submitted by: Richard Arends <richard at unixguru dot nl> Approved by: re (bmah) Approved by: imp (mentor)
This commit is contained in:
parent
a02c85c136
commit
58dfa07ade
8 changed files with 8 additions and 7 deletions
|
|
@ -17,7 +17,7 @@ options UFS_DIRHASH # Improve performance on big directories
|
|||
options MD_ROOT # MD is a potential root device
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_GPT # GUID Partition Tables.
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ options MSDOSFS # MSDOS Filesystem
|
|||
options CD9660 # ISO 9660 Filesystem
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_GPT # GUID Partition Tables.
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ options UFS_DIRHASH # Improve performance on big directories
|
|||
options MD_ROOT # MD is a potential root device
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_GPT # GUID Partition Tables.
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ options UFS_DIRHASH # Improve performance on big directories
|
|||
options MD_ROOT # MD is a potential root device
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_GPT # GUID Partition Tables.
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ options UFS_DIRHASH # Improve performance on big directories
|
|||
options MD_ROOT # MD is a potential root device
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_GPT # GUID Partition Tables.
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ options UFS_DIRHASH # Improve performance on big directories
|
|||
options MD_ROOT # MD is a potential root device
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_GPT # GUID Partition Tables.
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ options NFSSERVER # Network Filesystem Server
|
|||
options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_GPT # GUID Partition Tables.
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
|
|
|
|||
|
|
@ -267,6 +267,7 @@ prework() {
|
|||
create_tree() {
|
||||
echo "${TS} Creating directory hierarchy... "
|
||||
mtree -deU -f /etc/mtree/BSD.root.dist -p ${WORKDIR}
|
||||
mtree -deU -f /etc/mtree/BIND.chroot.dist -p ${WORKDIR}
|
||||
mtree -deU -f /etc/mtree/BSD.usr.dist -p ${WORKDIR}/usr
|
||||
mtree -deU -f /etc/mtree/BSD.local.dist -p ${WORKDIR}/usr/local
|
||||
mtree -deU -f /etc/mtree/BSD.var.dist -p ${WORKDIR}/var
|
||||
|
|
|
|||
Loading…
Reference in a new issue