We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ls
openBSD
1 parent 013c953 commit a644c27Copy full SHA for a644c27
src/recipe/os/BSD/OpenBSD.c
@@ -37,6 +37,7 @@ os_openbsd_getsrc (char *option)
37
chsrc_view_file ("/etc/installurl");
38
}
39
40
+
41
/**
42
* @consult
43
* 1. https://mirrors.tuna.tsinghua.edu.cn/help/openbsd/
@@ -56,4 +57,23 @@ os_openbsd_setsrc (char *option)
56
57
chsrc_conclude (&source);
58
59
-def_target(os_openbsd);
60
61
+Feature_t
62
+os_openbsd_feat (char *option)
63
+{
64
+ Feature_t f = {0};
65
66
+ f.can_get = true;
67
+ f.can_reset = false;
68
69
+ f.cap_locally = CanNot;
70
+ f.cap_locally_explain = NULL;
71
+ f.can_english = true;
72
+ f.can_user_define = true;
73
74
+ f.note = NULL;
75
+ return f;
76
+}
77
78
79
+def_target_gsf(os_openbsd);
0 commit comments