/openbmc/openbmc/poky/meta/recipes-devtools/git/git/ |
H A D | 0001-config.mak.uname-do-not-force-RHEL-7-specific-build-.patch | 4 Subject: [PATCH] config.mak.uname: do not force RHEL-7 specific build settings 16 config.mak.uname | 4 ---- 19 diff --git a/config.mak.uname b/config.mak.uname 21 --- a/config.mak.uname 22 +++ b/config.mak.uname
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/lmbench/lmbench/ |
H A D | update-config-script.patch | 17 UNAME=`uname -n 2>/dev/null` 18 if [ X$UNAME = X ] 20 -else echo CONFIG.$UNAME 21 +else echo ../scripts/CONFIG.$UNAME
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/nss/nss/ |
H A D | 0001-nss-fix-support-cross-compiling.patch | 21 @@ -26,11 +26,11 @@ OS_ARCH := $(subst /,_,$(shell uname -s)) 25 -OS_TEST := $(shell uname -m) 26 +OS_TEST ?= $(shell uname -m) 28 OS_RELEASE := $(shell uname -r)_$(OS_TEST) 30 - OS_RELEASE := $(shell uname -r) 31 + OS_RELEASE ?= $(shell uname -r)
|
/openbmc/qemu/bsd-user/freebsd/ |
H A D | os-misc.h | 40 void *uname, *upath; in do_freebsd_shm_open2() local 51 uname = NULL; in do_freebsd_shm_open2() 53 uname = lock_user_string(nameptr); in do_freebsd_shm_open2() 54 if (uname == NULL) { in do_freebsd_shm_open2() 61 target_to_host_bitmask(shmflags, shmflag_flags_tbl), uname)); in do_freebsd_shm_open2() 66 if (uname != NULL) { in do_freebsd_shm_open2() 67 unlock_user(uname, nameptr, 0); in do_freebsd_shm_open2()
|
/openbmc/openbmc/poky/meta/recipes-bsp/v86d/v86d/ |
H A D | Support-for-cross-compilation.patch | 7 machine for Intel x86) where HOST_ARCH (uname -m) != TARGET_ARCH. 10 to `uname -m`. 26 - local m=`uname -m` 27 + local m="${TARGET_ARCH:-$(uname -m)}"
|
/openbmc/u-boot/cmd/ |
H A D | ximg.c | 43 const char *uname = NULL; in do_imgextract() local 62 uname = argv[2]; in do_imgextract() 125 if (uname == NULL) { in do_imgextract() 131 "at %08lx ...\n", uname, addr); in do_imgextract() 140 noffset = fit_image_get_node(fit_hdr, uname); in do_imgextract() 142 printf("Can't find '%s' FIT subimage\n", uname); in do_imgextract() 265 "addr uname [dest]\n" 266 " - extract <uname> subimage from FIT image at <addr> and copy to <dest>"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/redis/redis/ |
H A D | 0003-hack-to-force-use-of-libc-malloc.patch | 30 -uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') 31 +# use fake uname option to force use of generic libc 33 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/redis/redis-7.2.8/ |
H A D | 0003-hack-to-force-use-of-libc-malloc.patch | 30 -uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') 31 +# use fake uname option to force use of generic libc 33 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/valkey/valkey/ |
H A D | oe-use-libc-malloc.patch | 37 -uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') 38 +# use fake uname option to force use of generic libc 40 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
|
/openbmc/openbmc/poky/meta/recipes-kernel/kexec/kexec-tools/ |
H A D | kdump.conf | 2 #KDUMP_KVER="`uname -r`" 14 MAKEDUMPFILE_ARGS="--dump-dmesg -x /boot/vmlinux-`uname -r`"
|
/openbmc/openbmc-test-automation/ffdc/ |
H A D | ffdc_config.yaml | 28 - 'echo -e "\n++++++++++ uname -a ++++++++++" >> 30 - "uname -a >> /tmp/BMC_general.txt" 225 - 'echo "\n++++++++++ uname -a ++++++++++" >> 227 - "uname -a >> /tmp/UBUNTU_general.txt" 236 - "{ cat /etc/os-release; uname -a; rpm -qa ; } >/tmp/OS_info.txt" 270 - 'echo -e "\n++++++++++ uname -a ++++++++++" >> 272 - "uname -a >> /tmp/RHEL_general.txt" 281 - "{ cat /etc/os-release; uname -a; rpm -qa ; } >/tmp/OS_info.txt" 315 - 'echo "\n++++++++++ uname -a ++++++++++" >> /tmp/SLES_general.txt' 316 - "uname -a >> /tmp/SLES_general.txt" [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/gradm/gradm/ |
H A D | 0001-make-Define-SBINDIR-flag.patch | 22 …LIBS := $(shell if [ "`uname -m`" != "sparc64" -a "`uname -m`" != "x86_64" ]; then echo "-lfl" ; e… 26 …#OPT_FLAGS := $(shell if [ "`uname -m`" != "sparc64" ] && [ "`uname -m`" != "x86_64" ]; then echo …
|
H A D | 0001-Makefile-Append-instead-of-overriding-LDFLAGS.patch | 19 …#OPT_FLAGS := $(shell if [ "`uname -m`" != "sparc64" ] && [ "`uname -m`" != "x86_64" ]; then echo …
|
/openbmc/openbmc-tools/bbdbg/ |
H A D | bbdbg | 32 …BDBG_PATH}/tmp/sysroots-components/$(uname -m)/libsolv-native/usr/lib:${BBDBG_PATH}/tmp/sysroots-c… 33 BBDBG_OPKG=${BBDBG_PATH}/tmp/sysroots-components/$(uname -m)/opkg-native/usr/bin/opkg
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/zabbix/zabbix/ |
H A D | 0001-Fix-configure.ac.patch | 1 uname can not get version of kernel correctly while cross compile 18 - kernel=`uname -r`
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/pimd/pimd/ |
H A D | 0001-configure-Dont-use-uname-to-determine-target-OS.patch | 4 Subject: [PATCH] configure: Dont use uname to determine target OS 23 -OS=`uname`
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/ |
H A D | rdist-6.1.5-svr4.patch | 9 if [ -z "${OS}" -a ! -z "${uname}" ]; then 10 case "`$uname -a | tr '[A-Z]' '[a-z]'`" in
|
/openbmc/openbmc/poky/scripts/contrib/ |
H A D | ddimage | 21 if [ "$(uname)" = "Darwin" ]; then 39 if [ "$(uname)" = "Darwin" ]; then 78 if [ "$(uname)" = "Darwin" ]; then 133 if [ "$(uname)" = "Darwin" ]; then
|
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/ |
H A D | runlevel.py | 18 (status, output) = self.target.run("uname -a") 19 self.assertEqual(status, 0, msg='Failed to run uname command, output: %s' % output)
|
H A D | ssh.py | 20 status, output = self.target.run("uname -a", timeout=30) 36 self.fail("uname failed with \"%s\" (exit code %s)" % (output, status))
|
/openbmc/u-boot/common/ |
H A D | image-fit.c | 263 const char *uname; in fit_conf_print() local 276 uname = fdt_getprop(fit, noffset, FIT_KERNEL_PROP, NULL); in fit_conf_print() 278 if (!uname) in fit_conf_print() 281 printf("%s\n", uname); in fit_conf_print() 284 uname = fdt_getprop(fit, noffset, FIT_RAMDISK_PROP, NULL); in fit_conf_print() 285 if (uname) in fit_conf_print() 286 printf("%s Init Ramdisk: %s\n", p, uname); in fit_conf_print() 288 uname = fdt_getprop(fit, noffset, FIT_FIRMWARE_PROP, NULL); in fit_conf_print() 289 if (uname) in fit_conf_print() 290 printf("%s Firmware: %s\n", p, uname); in fit_conf_print() [all …]
|
/openbmc/qemu/linux-user/ |
H A D | uname.c | 2 * cpu to uname machine name map 24 #include "uname.h" 83 if (uname(&uts_buf) < 0) in sys_uname() 108 /* Convert a uname release string like "2.6.18" to an integer in relstr_to_int()
|
/openbmc/openbmc/meta-openembedded/meta-networking/files/waf-cross-answers/ |
H A D | cross-answers-aarch64.txt | 1 Checking uname sysname type: "Linux" 2 Checking uname version type: "# Wed May 20 10:34:39 UTC 2015"
|
H A D | cross-answers-mips64el.txt | 1 Checking uname sysname type: "Linux" 2 Checking uname version type: "# Wed May 20 10:34:39 UTC 2015"
|
H A D | cross-answers-powerpc.txt | 1 Checking uname sysname type: "Linux" 2 Checking uname version type: "# Wed May 20 10:34:39 UTC 2015"
|