mirror of
https://github.com/RubyMetric/chsrc
synced 2025-08-02 07:29:33 +08:00
80 lines
2.4 KiB
C
80 lines
2.4 KiB
C
/** ------------------------------------------------------------
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* -------------------------------------------------------------
|
|
* File Authors : Heng Guo <2085471348@qq.com>
|
|
* | Aoran Zeng <ccmywish@qq.com>
|
|
* Contributors : Nil Null <nil@null.org>
|
|
* Created On : <2023-09-03>
|
|
* Last Modified : <2025-07-31>
|
|
* ------------------------------------------------------------*/
|
|
|
|
/**
|
|
* @update 2025-07-31
|
|
*/
|
|
static Source_t os_openbsd_sources[] =
|
|
{
|
|
{&UpstreamProvider, NULL, NULL},
|
|
{&MirrorZ, "https://mirrors.cernet.edu.cn/OpenBSD/", DelegateToMirror},
|
|
{&Bfsu, "https://mirrors.bfsu.edu.cn/OpenBSD/", DelegateToMirror},
|
|
{&Tuna, "https://mirrors.tuna.tsinghua.edu.cn/OpenBSD/", DelegateToMirror},
|
|
{&Nju, "https://mirror.nju.edu.cn/OpenBSD/", DelegateToMirror},
|
|
{&Nyist, "https://mirror.nyist.edu.cn/OpenBSD/", DelegateToMirror},
|
|
{&Sjtug_Siyuan, "https://mirror.sjtu.edu.cn/OpenBSD/", DelegateToMirror},
|
|
{&Iscas, "https://mirror.iscas.ac.cn/OpenBSD/", DelegateToMirror},
|
|
{&Cqupt, "https://mirrors.cqupt.edu.cn/openbsd/", DelegateToMirror},
|
|
{&Ali, "https://mirrors.aliyun.com/OpenBSD/", DelegateToMirror},
|
|
{&Tencent, "https://mirrors.tencent.com/OpenBSD/", DelegateToMirror},
|
|
// {&Tencent_Intra, "https://mirrors.tencentyun.com/OpenBSD/", DelegateToMirror},
|
|
{&Netease, "https://mirrors.163.com/OpenBSD/", DelegateToMirror},
|
|
{&Sohu, "https://mirrors.sohu.com/OpenBSD/", DelegateToMirror}
|
|
};
|
|
def_sources_n(os_openbsd);
|
|
|
|
|
|
void
|
|
os_openbsd_getsrc (char *option)
|
|
{
|
|
chsrc_view_file ("/etc/installurl");
|
|
}
|
|
|
|
|
|
/**
|
|
* @consult
|
|
* 1. https://mirrors.tuna.tsinghua.edu.cn/help/openbsd/
|
|
* 2. https://book.bsdcn.org/di-26-zhang-openbsd/di-26.2-jie-pei-zhi.html
|
|
*/
|
|
void
|
|
os_openbsd_setsrc (char *option)
|
|
{
|
|
chsrc_ensure_root ();
|
|
|
|
chsrc_yield_source_and_confirm (os_openbsd);
|
|
|
|
chsrc_backup ("/etc/installurl");
|
|
chsrc_overwrite_file (source.url, "/etc/installurl");
|
|
|
|
chsrc_determine_chgtype (ChgType_Auto);
|
|
chsrc_conclude (&source);
|
|
}
|
|
|
|
|
|
Feature_t
|
|
os_openbsd_feat (char *option)
|
|
{
|
|
Feature_t f = {0};
|
|
|
|
f.can_get = true;
|
|
f.can_reset = false;
|
|
|
|
f.cap_locally = CanNot;
|
|
f.cap_locally_explain = NULL;
|
|
f.can_english = true;
|
|
f.can_user_define = true;
|
|
|
|
f.note = NULL;
|
|
return f;
|
|
}
|
|
|
|
|
|
def_target_gsf(os_openbsd);
|