/buildroot/package/rubix/ |
A D | 0002-misc-fixes.patch | 68 if (s->im) 84 s->im=XCreateImage(s->d, DefaultVisual(s->d, DefaultScreen(s->d)), 85 - s->depth==32?24:s->depth, ZPixmap, 92 s->depth=DefaultDepth(s->d, DefaultScreen(s->d)); 94 - if (s->depth!=8 && s->depth!=16 && s->depth!=24) { 96 + if (s->depth!=8 && s->depth!=15 && s->depth!=16 && s->depth!=24) { 104 s->w=XCreateWindow(s->d, DefaultRootWindow(s->d), 0, 0, 108 s->h=XCreateWindow(s->d, DefaultRootWindow(s->d), 0, 0, 109 - HELP_X, HELP_Y, 3, s->depth==32?24:s->depth, 130 memcpy(s->buffer + i*dw, s->buffer, dw); [all …]
|
/buildroot/support/testing/tests/package/test_z3/rootfs-overlay/root/ |
A D | z3test.py | 8 s = z3.Solver() variable 10 s.add(3 * x + 2 * y - z == 1) 11 s.add(2 * x - 2 * y + 4 * z == -2) 12 s.add(-x + y / 2 - z == 0) 14 check = s.check() 15 model = s.model()
|
/buildroot/support/kconfig/ |
A D | util.c | 106 if (gs->s) in str_free() 107 free(gs->s); in str_free() 108 gs->s = NULL; in str_free() 116 if (s) { in str_append() 117 l = strlen(gs->s) + strlen(s) + 1; in str_append() 119 gs->s = xrealloc(gs->s, l); in str_append() 122 strcat(gs->s, s); in str_append() 132 vsnprintf(s, sizeof(s), fmt, ap); in str_printf() 133 str_append(gs, s); in str_printf() 140 return gs->s; in str_get() [all …]
|
/buildroot/board/boundarydevices/common/ |
A D | boot.cmd | 11 if itest.s x51 == "x${cpu2}" ; then 13 elif itest.s x53 == "x${cpu2}"; then 15 elif itest.s x6SX == "x${cpu3}" || itest.s x6U == "x${cpu2}" || itest.s x7D == "x${cpu2}"; then 17 elif itest.s x8M == "x${cpu2}"; then 34 if itest.s "x" == "x${board}" ; then 40 if itest.s x51 == "x${cpu2}" ; then 42 elif itest.s x53 == "x${cpu2}" ; then 44 elif itest.s x6DL == "x${cpu3}" || itest.s x6SO == "x${cpu3}" ; then 79 if itest.s x${console} != x ; then 82 if itest.s "x" == "x$vmalloc" ; then [all …]
|
/buildroot/board/stmicroelectronics/common/stm32mp157/ |
A D | post-image.sh | 13 printf '%s\n' "${ATF_VARIABLES}" | grep -Eq 'DTB_FILE_NAME=[0-9A-Za-z_\-]*' 15 …DTB_FILE_NAME="$(printf '%s\n' "${ATF_VARIABLES}" | sed 's/.*DTB_FILE_NAME=\([a-zA-Z0-9_\-]*\)\.dt…
|
/buildroot/package/busybox/ |
A D | 0004-nslookup-sanitize-all-printed-strings-with-printable.patch | 23 //printf("Unable to uncompress domain: %s\n", strerror(errno)); 32 //printf("Cannot uncompress MX domain: %s\n", strerror(errno)); 35 - printf("%s\tmail exchanger = %d %s\n", ns_rr_name(rr), n, dname); 36 + printf("%s\tmail exchanger = %d %s\n", ns_rr_name(rr), n, printable_string(dname)); 44 - printf("%s\ttext = \"%s\"\n", ns_rr_name(rr), dname); 45 + printf("%s\ttext = \"%s\"\n", ns_rr_name(rr), printable_string(dname)); 52 printf("%s\tservice = %u %u %u %s\n", ns_rr_name(rr), 62 - printf("\tmail addr = %s\n", dname); 63 + printf("\tmail addr = %s\n", printable_string(dname));
|
/buildroot/package/curlftpfs/ |
A D | 0003-nocache-memleak-fix.patch | 38 - DEBUG(1, "cache_add_link: %s %s\n", full_path, reallink); 41 + DEBUG(1, "cache_add_link: %s %s\n", full_path, reallink); 47 DEBUG(1, "filler: %s\n", file); 50 - DEBUG(1, "cache_add_attr: %s\n", full_path); 53 + DEBUG(1, "cache_add_attr: %s\n", full_path); 58 DEBUG(2, "comparing %s %s\n", name, file);
|
/buildroot/package/makedevs/ |
A D | makedevs.c | 60 va_start(p, s); in bb_error_msg() 70 va_start(p, s); in bb_error_msg_and_die() 80 if(s == 0) s = ""; in bb_vperror_msg() 82 if (*s) s = ": "; in bb_vperror_msg() 90 va_start(p, s); in bb_perror_msg() 99 va_start(p, s); in bb_perror_msg_and_die() 124 char *s = path; in bb_make_directory() local 143 while (*s) { in bb_make_directory() 146 ++s; in bb_make_directory() 152 ++s; in bb_make_directory() [all …]
|
/buildroot/package/dahdi-linux/ |
A D | 0002-Fix-compilation-issue-for-6-8-y-6-9-y-kernel.patch | 48 if (s->parent->manufacturer) { 53 if (s->parent->devicetype) { 58 if (s->parent->location) { 63 if (s->spantype) { 66 switch (s->spantype) { 93 s->desc, 97 s->name, 106 dahdi_lboname(s->lbo), 115 if (s->parent->devicetype) { 125 if (s->spantype) { [all …]
|
/buildroot/support/testing/tests/package/ |
A D | test_python_magic_wormhole.py | 21 s = "twistd" 22 s += " --pidfile=/tmp/{}.pid".format(command) 23 s += " --logfile=/tmp/{}.log".format(command) 24 s += " {}".format(command) 26 return s
|
/buildroot/package/libssh2/ |
A D | 0002-src-add-strict-KEX-to-fix-CVE-2023-48795-Terrapin-Attack.patch | 69 unsigned char *s; 72 while(s && *s) { 74 size_t method_len = (p ? (size_t)(p - s) : strlen((char *) s)); 90 if(s) { 96 unsigned char *s; 107 while(s && *s) { 109 size_t method_len = (p ? (size_t)(p - s) : strlen((char *) s)); 125 if(s) { 147 if(s) { 168 if(s) { [all …]
|
/buildroot/docs/website/css/ |
A D | main.css | 59 -webkit-transition: color 0.1s ease-in, background 0.1s ease-in; 60 -moz-transition: color 0.1s ease-in, background 0.1s ease-in; 61 -ms-transition: color 0.1s ease-in, background 0.1s ease-in; 62 -o-transition: color 0.1s ease-in, background 0.1s ease-in; 63 transition: color 0.1s ease-in, background 0.1s ease-in; 75 -webkit-transition: color 0.1s ease-in, background 0.1s ease-in; 76 -moz-transition: color 0.1s ease-in, background 0.1s ease-in; 77 -ms-transition: color 0.1s ease-in, background 0.1s ease-in; 78 -o-transition: color 0.1s ease-in, background 0.1s ease-in; 79 transition: color 0.1s ease-in, background 0.1s ease-in; [all …]
|
/buildroot/package/ramsmp/ |
A D | Makefile | 7 i386: ramsmp.c i386/*.s i386/cpuinfo/*.s 10 x86_64: ramsmp.c amd64/*.s
|
/buildroot/package/ramspeed/ |
A D | Makefile | 7 i386: ramspeed.c i386/*.s i386/cpuinfo/*.s 10 x86_64: ramspeed.c amd64/*.s
|
/buildroot/support/misc/ |
A D | cross-compilation.conf.in | 1 # Note: Buildroot's and Meson's terminologies differ about the meaning 3 # - Buildroot's 'host' is Meson's 'build' 4 # - Buildroot's 'target' is Meson's 'host'
|
/buildroot/package/vpnc/ |
A D | 0006-config.c-Replace-deprecated-SUSv3-functions-with-POS.patch | 29 - asprintf(&realname, "%s%s%s", index(name, '/') ? "" : "/etc/vpnc/", name, add_dot_conf ? ".conf" … 30 + asprintf(&realname, "%s%s%s", strchr(name, '/') ? "" : "/etc/vpnc/", name, add_dot_conf ? ".conf"…
|
/buildroot/support/testing/tests/package/test_micropython/rootfs-overlay/root/ |
A D | zcat.py | 10 s = g.read() 11 print(s.decode("UTF-8"), end="")
|
/buildroot/package/cache-calibrator/ |
A D | 0001-Fix-conflicting-round-function.patch | 32 for (l = 0, s = " ("; l <= cache->levels; l++, s = ", ") { 33 - if (!delay) fprintf(fp, "%s'(%ld)' %f", s, round(CYperIt(cache->latency1[l] - delay)), NSperIt(c… 34 - else fprintf(fp, "%s'(%ld)' %f", s, round(CYperIt(cache->latency2[l] - delay)), NSperIt(cache->… 36 + else fprintf(fp, "%s'(%ld)' %f", s, lng_round(CYperIt(cache->latency2[l] - delay)), NSperIt(cac… 39 fprintf(fp, "%s'%1.3g' %ld", s, (dbl)(y * MHz) / 1000.0, y); 51 fprintf(fp, "%s'<L1>' %ld)\n", s, TLB->mincachelines); 53 for (l = 0, s = " ("; l <= TLB->levels; l++, s = ", ") { 54 - if (!delay) fprintf(fp, "%s'(%ld)' %f", s, round(CYperIt(TLB->latency1[l] - delay)), NSperIt(TLB… 55 - else fprintf(fp, "%s'(%ld)' %f", s, round(CYperIt(TLB->latency2[l] - delay)), NSperIt(TLB->late… 57 + else fprintf(fp, "%s'(%ld)' %f", s, lng_round(CYperIt(TLB->latency2[l] - delay)), NSperIt(TLB->… [all …]
|
/buildroot/package/libopenssl/ |
A D | 0003-Revert-Fix-static-builds.patch | 21 # because it's now all been merged into the corresponding $config entry 23 -if (grep { $_ =~ /(?:^|\s)-static(?:\s|$)/ } @{$config{LDFLAGS}}) { 34 +if (grep { $_ =~ /(?:^|\s)-static(?:\s|$)/ } @{$config{LDFLAGS}}) {
|
/buildroot/package/dcron/ |
A D | 0001-main.c-add-newline-to-logfile-openning-error-message.patch | 20 - fdprintf(2, "failed to open logfile '%s', reason: %s", LogFile, strerror(n)); 21 + fdprintf(2, "failed to open logfile '%s', reason: %s\n", LogFile, strerror(n));
|
/buildroot/package/liboping/ |
A D | 0005-src-oping.c-always-use-s-style-format-for-printf-sty.patch | 4 Subject: [PATCH] src/oping.c: always use "%s"-style format for 15 Let's wrap all the missing places with "%s" format. 34 + mvwprintw (ctx->window, /* y = */ 3, /* x = */ x + 2, "%s", symbol); 43 + "%s", hist_symbols_utf8[index]); 49 HOST_PRINTF ("%zu bytes from %s (%s): icmp_seq=%u ttl=%i ", 56 HOST_PRINTF ("qos=%s ",
|
/buildroot/package/getent/ |
A D | Config.in | 6 toolchains, it's the real getent program from the C library 8 musl toolchains, it's a simple wrapper script that emulates 9 getent's behavior, since there is no NSS support in uclibc
|
/buildroot/package/freeswitch/ |
A D | 0002-mod_av-fix-build-with-ffmpeg-6.0.patch | 21 s->oformat = oformat; 23 if (s->oformat->priv_data_size > 0) { 24 s->priv_data = av_mallocz(s->oformat->priv_data_size); 25 if (!s->priv_data) { 28 s->priv_data = NULL;
|
/buildroot/package/python-markdown/ |
A D | Config.in | 3 # runtime dependency on Python's xml module 6 This is a Python implementation of John Gruber's Markdown
|
/buildroot/package/cups-filters/ |
A D | 0001-beh-backend-Use-execv-instead-of-system-CVE-2023-24805.patch | 100 + "ERROR: beh: Invalid URI, scheme (\"%s\") is a directory.\n", 113 - "%s/backend/%s '%s' '%s' '%s' '%s' '%s' %s", 136 + "%s/backend/%s", cups_serverbin, scheme); 140 + "ERROR: beh: Invalid scheme (\"%s\"), could not determing backend path.\n", 151 - "DEBUG: beh: Executing backend command line \"%s\"...\n", 153 + "DEBUG: beh: Executing backend command line \"%s '%s' '%s' '%s' '%s' '%s' %s\"...\n", 157 "DEBUG: beh: Using device URI: %s\n", 170 fprintf(stderr, "ERROR: Unable to execute backend command line: %s\n",
|