Home
last modified time | relevance | path

Searched refs:postfix (Results 1 – 25 of 68) sorted by relevance

123

/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/postfix/
H A Dpostfix.inc7 HOMEPAGE= "http://www.postfix.org"
9 DEPENDS = "db icu libpcre libnsl2 m4-native openssl postfix-native \
17 S = "${WORKDIR}/postfix-${PV}"
25 INITSCRIPT_NAME = "postfix"
29 "-d /var/spool/postfix -r -g postfix --shell /bin/false postfix; \
32 GROUPADD_PARAM:${PN}-bin = "--system postfix;--system postdrop;--system vmail"
102 SYSTEMD_SERVICE:${PN} = "postfix.service"
105 sh ./postfix-install 'install_root=${D}' \
106 'config_directory=${sysconfdir}/postfix' \
107 'daemon_directory=${libexecdir}/postfix' \
[all …]
H A Dpostfix_3.6.7.bb1 require postfix.inc
3 SRC_URI += "ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-${PV}.tar.gz \
5 file://postfix \
7 file://postfix.service \
17 UPSTREAM_CHECK_REGEX = "postfix\-(?P<pver>3\.6(\.\d+)+).tar.gz"
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/postfix/files/
H A Dmain.cf14 virtual_mailbox_maps = hash:/etc/postfix/virtual
15 virtual_alias_maps = hash:/etc/postfix/virtual_alias
30 #config_directory = /etc/postfix
31 sample_directory = /etc/postfix
32 queue_directory = /var/spool/postfix
36 daemon_directory = @LIBEXECDIR@/postfix
37 mail_owner = postfix
73 # check_sender_access hash:/etc/postfix/access_domains,
82 # check_recipient_access pcre:/etc/postfix/recipient_checks.pcre,
83 # check_helo_access pcre:/etc/postfix/helo_checks.pcre,
[all …]
H A Dpostfix32 PIDFile=/var/spool/postfix/pid/master.pid
42 if ! postfix status >/dev/null 2>&1; then
44 postfix start
53 if postfix status >/dev/null 2>&1; then
54 postfix stop
63 if postfix status >/dev/null 2>&1; then
64 postfix reload
67 postfix start
79 if postfix status >/dev/null 2>&1; then
H A Dpostfix.service8 PIDFile=@LOCALSTATEDIR@/spool/postfix/pid/master.pid
10 ExecStartPre=-@LIBEXECDIR@/postfix/aliasesdb
11 ExecStart=@SBINDIR@/postfix start
12 ExecReload=@SBINDIR@/postfix reload
13 ExecStop=@SBINDIR@/postfix stop
H A D0002-Change-fixed-postconf-to-a-variable-for-cross-compil.patch11 postfix-install | 18 ++++++++++--------
18 @@ -22,7 +22,7 @@ META = meta/main.cf.proto meta/master.cf.proto meta/postfix-files \
27 diff --git a/postfix-install b/postfix-install
29 --- a/postfix-install
30 +++ b/postfix-install
H A Daliasesdb3 ALIASESDB_STAMP=/var/lib/misc/postfix.aliasesdb-stamp
/OK3568_Linux_fs/kernel/drivers/firmware/broadcom/
H A Dbcm47xx_sprom.c36 static void create_key(const char *prefix, const char *postfix, in create_key() argument
39 if (prefix && postfix) in create_key()
40 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key()
43 else if (postfix) in create_key()
44 snprintf(buf, len, "%s%s", name, postfix); in create_key()
49 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument
55 create_key(prefix, postfix, name, key, sizeof(key)); in get_nvram_var()
59 create_key(NULL, postfix, name, key, sizeof(key)); in get_nvram_var()
67 const char *postfix, const char *name, \
74 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/
H A Dmali_kbase_debugfs_helper.c176 const char *postfix = " "; in kbase_debugfs_helper_get_attr_to_string() local
179 postfix = "\n"; in kbase_debugfs_helper_get_attr_to_string()
182 get_attr_fn(array, index), postfix); in kbase_debugfs_helper_get_attr_to_string()
240 const char *postfix = " "; in kbase_debugfs_helper_seq_read() local
243 postfix = "\n"; in kbase_debugfs_helper_seq_read()
245 seq_printf(sfile, "%zu%s", get_attr_fn(array, index), postfix); in kbase_debugfs_helper_seq_read()
/OK3568_Linux_fs/kernel/drivers/media/v4l2-core/
H A Dv4l2-i2c.c33 const char *devname, const char *postfix) in v4l2_i2c_subdev_set_name() argument
37 if (!postfix) in v4l2_i2c_subdev_set_name()
38 postfix = ""; in v4l2_i2c_subdev_set_name()
40 snprintf(sd->name, sizeof(sd->name), "%s%s %d-%04x", devname, postfix, in v4l2_i2c_subdev_set_name()
/OK3568_Linux_fs/kernel/tools/iio/
H A Dlsiio.c34 static inline int check_postfix(const char *str, const char *postfix) in check_postfix() argument
36 return strlen(str) > strlen(postfix) && in check_postfix()
37 strcmp(str + strlen(str) - strlen(postfix), postfix) == 0; in check_postfix()
/OK3568_Linux_fs/kernel/drivers/clk/ti/
H A Dadpll.c184 const char *postfix) in ti_adpll_clk_get_name() argument
198 d->pa, postfix); in ti_adpll_clk_get_name()
211 const char *postfix = NULL; in ti_adpll_setup_clock() local
218 postfix = strrchr(name, '.'); in ti_adpll_setup_clock()
219 if (postfix && strlen(postfix) > 1) { in ti_adpll_setup_clock()
220 if (strlen(postfix) > ADPLL_MAX_CON_ID) in ti_adpll_setup_clock()
223 snprintf(con_id, 16, "pll%03lx%s", d->pa & 0xfff, postfix + 1); in ti_adpll_setup_clock()
495 const char *postfix; in ti_adpll_init_dco() local
506 postfix = "dco"; in ti_adpll_init_dco()
508 postfix = NULL; in ti_adpll_init_dco()
[all …]
/OK3568_Linux_fs/kernel/scripts/mod/
H A Dmodpost.h184 static inline bool strends(const char *str, const char *postfix) in strends() argument
186 if (strlen(str) < strlen(postfix)) in strends()
189 return strcmp(str + strlen(str) - strlen(postfix), postfix) == 0; in strends()
/OK3568_Linux_fs/kernel/drivers/iio/
H A Dindustrialio-event.c365 char *postfix; in iio_device_add_event() local
372 postfix = kasprintf(GFP_KERNEL, "%s_%s_%s", in iio_device_add_event()
377 postfix = kasprintf(GFP_KERNEL, "%s_%s", in iio_device_add_event()
380 if (postfix == NULL) in iio_device_add_event()
391 ret = __iio_add_chan_devattr(postfix, chan, show, store, in iio_device_add_event()
394 kfree(postfix); in iio_device_add_event()
H A Diio_core.h20 int __iio_add_chan_devattr(const char *postfix,
/OK3568_Linux_fs/rkbin/
H A DREADME5 [chip]_[module]_[feature]_[version].[postfix]
11 postfix: 后缀名, 必选项, 代码编译出来的默认为.bin, 也有可能为.elf, 合并后为.img,小写
/OK3568_Linux_fs/kernel/drivers/bluetooth/
H A Dbtrtl.h53 const char *postfix);
67 const char *postfix) in btrtl_initialize() argument
H A Dbtbcm.c435 char postfix[16] = ""; in btbcm_initialize() local
493 snprintf(postfix, sizeof(postfix), "-%4.4x-%4.4x", vid, pid); in btbcm_initialize()
502 "brcm/%s%s.hcd", hw_name, postfix); in btbcm_initialize()
507 "brcm/BCM%s.hcd", postfix); in btbcm_initialize()
/OK3568_Linux_fs/kernel/arch/powerpc/include/asm/
H A Dbitops.h109 #define DEFINE_TESTOP(fn, op, prefix, postfix, eh) \ argument
122 postfix \
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/
H A Di915_request.c239 if (rq->postfix < head) { in __i915_request_fill()
243 memset(vaddr + head, val, rq->postfix - head); in __i915_request_fill()
301 rq->ring->head = rq->postfix; in i915_request_retire()
488 if (rq->infix == rq->postfix) in __i915_request_skip()
497 rq->infix = rq->postfix; in __i915_request_skip()
576 request->ring->vaddr + request->postfix); in __i915_request_submit()
1569 rq->postfix = intel_ring_offset(rq, cs); in __i915_request_commit()
/OK3568_Linux_fs/kernel/drivers/firmware/imx/
H A Dscu-pd.c80 bool postfix; member
271 if (pd_ranges->postfix) in imx_scu_add_pm_domain()
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dkernel-module-split.bbclass151 # Provide virtual package without postfix
154 postfix = format.split('%s')[1]
155 d.setVar('RPROVIDES:' + pkg, pkg.replace(postfix, ''))
/OK3568_Linux_fs/kernel/include/media/
H A Dv4l2-common.h184 const char *devname, const char *postfix);
243 const char *devname, const char *postfix) in v4l2_i2c_subdev_set_name() argument
/OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/tufao/tufao/
H A Dbuild-Fix-mkspecs-and-CMake-module-install-directori.patch27 # Debug version of library should have 'd' postfix on Windows
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Ddata.h83 const char *postfix,

123