git: 9front

Download patch

ref: 0236b8f18d80a6b8d029dac77ffb73b5f0af6db9
parent: af4afe6c4502a0118838eaa9c026f9a67e96896f
author: David du Colombier <0intro@gmail.com>
date: Fri Sep 6 07:55:35 EDT 2019

sys/src/libventi: define VtEntryNoArchive constant

--- a/sys/include/venti.h
+++ b/sys/include/venti.h
@@ -134,7 +134,8 @@
 	_VtEntryDir = 1<<1,		/* a directory */
 	_VtEntryDepthShift = 2,		/* shift for pointer depth */
 	_VtEntryDepthMask = 7<<2,	/* mask for pointer depth */
-	VtEntryLocal = 1<<5		/* for local storage only */
+	VtEntryLocal = 1<<5,		/* for local storage only */
+	VtEntryNoArchive = 1<<6		/* for local storage only */
 };
 enum
 {
--