mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
Add script to fix file names in upstream patches
Added a simple sed script to do a search and replace on the Illumos
ZFS file names and replace them with the ZFS on Linux equivalent.
Example usage:
# Replace Illumos paths with Linux paths
$ ./scripts/zfs2zol-patch.sed arc.c.patch > arc.c.patch.linux
# Ensure the script worked as expected
$ diff arc.c.patch arc.c.patch.linux
# Apply the patch using Linux paths
$ patch -p1 < arc.c.patch.linux
Signed-off-by: Richard Yao <ryao@gentoo.org>
Signed-off-by: Prakash Surya <surya1@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #1679
This commit is contained in:
parent
c12e3a594a
commit
37fd6e00a6
2 changed files with 16 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
SUBDIRS = zpool-config zpios-test zpios-profile
|
||||
|
||||
EXTRA_DIST = dkms.mkconf dkms.postinst kmodtool
|
||||
EXTRA_DIST = dkms.mkconf dkms.postinst kmodtool zfs2zol-patch.sed
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
dist_pkgdata_SCRIPTS = \
|
||||
|
|
|
|||
15
scripts/zfs2zol-patch.sed
Executable file
15
scripts/zfs2zol-patch.sed
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sed -f
|
||||
|
||||
s:usr/src/uts/common/fs/zfs/sys:include/sys:g
|
||||
s:usr/src/uts/common/fs/zfs:module/zfs:g
|
||||
s:usr/src/lib/libzpool:lib/libzpool:g
|
||||
s:usr/src/cmd:cmd:g
|
||||
s:usr/src/common/nvpair:module/nvpair:g
|
||||
s:usr/src/lib/libzfs/common/libzfs.h:include/libzfs.h:g
|
||||
s:usr/src/man/man1m/zfs.1m:man/man8/zfs.8:g
|
||||
s:usr/src/uts/common/sys:include/sys:g
|
||||
s:usr/src/lib/libzfs_core/common/libzfs_core.h:include/libzfs_core.h:g
|
||||
s:usr/src/lib/libzfs/common:lib/libzfs:g
|
||||
s:usr/src/lib/libzfs_core/common:lib/libzfs_core:g
|
||||
s:lib/libzpool/common/sys:include/sys:g
|
||||
s:lib/libzpool/common:lib/libzpool:g
|
||||
Loading…
Reference in a new issue