mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
Rework the way the bootstrap fetches pkg, by implementing a full support for the repositories, the boostrap will now loop over all available repo and try to fetch the full package from there. It will at the first valid package found. Fallback to packagesite (which has been deprecated for a while) if needed, by transforming it into a repo, if no repo is found. MFC After: 3 weeks (cherry picked from commit dc4581589a3256667fafd46a30c67abdfd86618f)
90 lines
2.4 KiB
C
90 lines
2.4 KiB
C
/*-
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2013 Baptiste Daroussin <bapt@FreeBSD.org>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef _PKG_CONFIG_H
|
|
#define _PKG_CONFIG_H
|
|
|
|
#include <paths.h>
|
|
#include <sys/queue.h>
|
|
|
|
#define URL_SCHEME_PREFIX "pkg+"
|
|
|
|
typedef enum {
|
|
PACKAGESITE = 0,
|
|
ABI,
|
|
MIRROR_TYPE,
|
|
ASSUME_ALWAYS_YES,
|
|
SIGNATURE_TYPE,
|
|
FINGERPRINTS,
|
|
REPOS_DIR,
|
|
PUBKEY,
|
|
PKG_ENV,
|
|
CONFIG_SIZE
|
|
} pkg_config_key;
|
|
|
|
typedef enum {
|
|
PKG_CONFIG_STRING=0,
|
|
PKG_CONFIG_BOOL,
|
|
PKG_CONFIG_LIST,
|
|
PKG_CONFIG_OBJECT
|
|
} pkg_config_t;
|
|
|
|
typedef enum {
|
|
CONFFILE_PKG=0,
|
|
CONFFILE_REPO,
|
|
} pkg_conf_file_t;
|
|
|
|
typedef enum {
|
|
SIGNATURE_NONE = 0,
|
|
SIGNATURE_FINGERPRINT,
|
|
SIGNATURE_PUBKEY,
|
|
} signature_t;
|
|
|
|
typedef enum {
|
|
MIRROR_NONE = 0,
|
|
MIRROR_SRV,
|
|
} mirror_t;
|
|
|
|
struct repository {
|
|
char *name;
|
|
char *url;
|
|
mirror_t mirror_type;
|
|
signature_t signature_type;
|
|
char *fingerprints;
|
|
char *pubkey;
|
|
STAILQ_ENTRY(repository) next;
|
|
};
|
|
STAILQ_HEAD(repositories, repository);
|
|
|
|
int config_init(const char *);
|
|
void config_finish(void);
|
|
int config_string(pkg_config_key, const char **);
|
|
int config_bool(pkg_config_key, bool *);
|
|
struct repositories *config_get_repositories(void);
|
|
|
|
#endif
|