Home
last modified time | relevance | path

Searched refs:shell (Results 1 – 25 of 726) sorted by relevance

12345678910>>...30

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/iptraf/iptraf-ng/
H A Dncurses-config.patch11 - NCURSES_CFLAGS := $(shell ncurses5-config --cflags 2>/dev/null)
12 - NCURSES_LDFLAGS := $(shell ncurses5-config --libs 2>/dev/null)
13 + NCURSES_CFLAGS := $(shell pkg-config ncurses --cflags 2>/dev/null)
14 + NCURSES_LDFLAGS := $(shell pkg-config ncurses --libs 2>/dev/null)
22 - NCURSES_CFLAGS := $(shell ncursesw5-config --cflags 2>/dev/null)
23 - NCURSES_LDFLAGS := $(shell ncursesw5-config --libs 2>/dev/null)
24 + NCURSES_CFLAGS := $(shell p[k-config ncursesw --cflags 2>/dev/null)
25 + NCURSES_LDFLAGS := $(shell pkg-config ncursesw --libs 2>/dev/null)
33 - NCURSES_CFLAGS := $(shell ncurses6-config --cflags 2>/dev/null)
34 - NCURSES_LDFLAGS := $(shell ncurses6-config --libs 2>/dev/null)
[all …]
/openbmc/u-boot/test/py/tests/test_fs/
H A Dconftest.py157 check_call('rm -f %s' % fs_img, shell=True)
159 % (fs_img, count), shell=True)
161 % (fs_lnxtype, mkfs_opt, fs_img), shell=True)
164 call('rm -f %s' % fs_img, shell=True)
203 % (device, mount_point), shell=True)
210 % (mount_opt, device, mount_point), shell=True)
213 check_call('sudo chmod a+rw %s' % mount_point, shell=True)
228 call('guestunmount %s' % mount_point, shell=True)
230 call('sudo umount %s' % mount_point, shell=True)
266 check_call('mkdir -p %s' % mount_dir, shell=True)
[all …]
/openbmc/openbmc/meta-raspberrypi/recipes-graphics/raspidmx/raspidmx/
H A D0003-switch-to-pkg-config.patch32 -CFLAGS+=-Wall -g -O3 -I../common $(shell libpng-config --cflags)
33 -LDFLAGS+=-L/opt/vc/lib/ -lbcm_host -lm $(shell libpng-config --ldflags) -L../lib -lraspidmx -lrasp…
34 +CFLAGS+=-Wall -g -O3 -I../common $(shell pkg-config --cflags libpng)
35 +LDFLAGS+=-L/opt/vc/lib/ -lbcm_host -lm $(shell pkg-config --libs libpng) -L../lib -lraspidmx -lras…
47 -CFLAGS+=-Wall -g -O3 -I../common $(shell libpng-config --cflags)
48 +CFLAGS+=-Wall -g -O3 -I../common $(shell pkg-config --cflags libpng)
50 -LDFLAGSPNG=${LDFLAGS} $(shell libpng-config --ldflags)
51 +LDFLAGSPNG=${LDFLAGS} $(shell pkg-config --libs libpng)
63 -CFLAGS+=-Wall -g -O3 -I../common $(shell libpng-config --cflags)
64 -LDFLAGS+=-L/opt/vc/lib/ -lbcm_host -lm $(shell libpng-config --ldflags) -L../lib -lraspidmx -lrasp…
[all …]
H A D0005-change-library-linking-order.patch30 CFLAGS+=-Wall -g -O3 -I../common $(shell pkg-config --cflags libpng)
31 -LDFLAGS+=-L/opt/vc/lib/ -lvchostif -lbcm_host -lm $(shell pkg-config --libs libpng) -L../lib -lras…
32 +LDFLAGS+=-L/opt/vc/lib/ -lvchostif -lbcm_host -lm -L../lib -lraspidmx -lraspidmxPng $(shell pkg-co…
43 CFLAGS+=-Wall -g -O3 -I../common $(shell pkg-config --cflags libpng)
44 -LDFLAGS+=-L/opt/vc/lib/ -lvchostif -lbcm_host -lm $(shell pkg-config --libs libpng) -L../lib -lras…
45 +LDFLAGS+=-L/opt/vc/lib/ -lvchostif -lbcm_host -lm -L../lib -lraspidmx -lraspidmxPng $(shell pkg-co…
56 CFLAGS+=-Wall -g -O3 -I../common $(shell pkg-config --cflags libpng)
57 -LDFLAGS+=-L/opt/vc/lib/ -lvchostif -lbcm_host -lm $(shell pkg-config --libs libpng) -L../lib -lras…
58 +LDFLAGS+=-L/opt/vc/lib/ -lvchostif -lbcm_host -lm -L../lib -lraspidmx -lraspidmxPng $(shell pkg-co…
69 CFLAGS+=-Wall -g -O3 -I../common $(shell pkg-config --cflags libpng)
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/vpnc/vpnc/
H A D0004-Use-pkgconfig-instead-of-libgcrypt-config.patch17 @@ -63,10 +63,10 @@ RELEASE_VERSION := $(shell cat VERSION)
21 -CFLAGS += $(shell libgcrypt-config --cflags) $(CRYPTO_CFLAGS)
22 +CFLAGS += $(shell pkg-config libgcrypt --cflags) $(CRYPTO_CFLAGS)
25 -LIBS += $(shell libgcrypt-config --libs) $(CRYPTO_LDADD)
26 +LIBS += $(shell pkg-config libgcrypt --libs) $(CRYPTO_LDADD)
28 ifeq ($(shell uname -s), SunOS)
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-extended/tgt/files/
H A D0001-Correct-the-path-of-header-files-check-in-Yocto-buil.patch29 -ifneq ($(shell test -e /usr/include/linux/signalfd.h && echo 1),)
30 +ifneq ($(shell test -e $(SYSROOT)/usr/include/linux/signalfd.h && echo 1),)
34 -ifneq ($(shell test -n $(shell find /usr/include -name "timerfd.h" | head -n1) && echo 1),)
35 +ifneq ($(shell test -n $(shell find $(SYSROOT)/usr/include -name "timerfd.h" | head -n1) && echo 1…
43 -ifneq ($(shell test -e /usr/include/sys/eventfd.h && test -e /usr/include/libaio.h && echo 1),)
44 +ifneq ($(shell test -e $(SYSROOT)/usr/include/sys/eventfd.h && test -e $(SYSROOT)/usr/include/liba…
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/surf/surf/
H A D0001-config.ml-make-compatible-with-webkitgtk-2.34.0.patch29 +X11INC = $(shell $(PKG_CONFIG) --cflags x11)
30 +X11LIB = $(shell $(PKG_CONFIG) --libs x11)
36 +GTKINC = $(shell $(PKG_CONFIG) --cflags gtk+-3.0 gcr-3 webkit2gtk-4.1)
37 +GTKLIB = $(shell $(PKG_CONFIG) --libs gtk+-3.0 gcr-3 webkit2gtk-4.1)
38 +WEBEXTINC = $(shell $(PKG_CONFIG) --cflags webkit2gtk-4.1 webkit2gtk-web-extension-4.1 gio-2.0)
39 +WEBEXTLIBS = $(shell $(PKG_CONFIG) --libs webkit2gtk-4.1 webkit2gtk-web-extension-4.1 gio-2.0)
/openbmc/u-boot/tools/patman/
H A Dcros_subprocess.py57 shell=False, cwd=None, env=None, **kwargs): argument
84 stdout=stdout, stderr=stderr, shell=shell, cwd=cwd, env=env,
303 plist = Popen([cmd], shell=True).CommunicateFilter(oper.Output)
312 self.assertRaises(OSError, Popen, [cmd], shell=False)
313 plist = Popen([cmd], shell=True).CommunicateFilter(oper.Output)
322 plist = Popen(cmd, shell=False).CommunicateFilter(oper.Output)
331 plist = Popen(cmd, shell=True).CommunicateFilter(oper.Output)
337 for shell in (False, True):
339 plist = Popen('pwd', shell=shell, cwd='/tmp').CommunicateFilter(oper.Output)
351 plist = Popen(cmd, shell=True, env=env).CommunicateFilter(oper.Output)
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/nss/nss/
H A D0001-nss-fix-support-cross-compiling.patch21 @@ -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/tests/migration-stress/
H A Dguestperf-plot.py23 from guestperf.shell import PlotShell
25 shell = PlotShell() variable
26 sys.exit(shell.run(sys.argv[1:]))
H A Dguestperf-batch.py23 from guestperf.shell import BatchShell
25 shell = BatchShell() variable
26 sys.exit(shell.run(sys.argv[1:]))
H A Dguestperf.py24 from guestperf.shell import Shell
26 shell = Shell() variable
27 sys.exit(shell.run(sys.argv[1:]))
/openbmc/openbmc/poky/scripts/
H A Doe-setup-layers24 … subprocess.check_output("git -C %s rev-parse --show-toplevel" % repodir, shell=True, stderr=subpr…
33 …curr_rev = subprocess.check_output("git -C %s rev-parse HEAD" % repodir, shell=True, stderr=subpro…
42 …curr_uri = subprocess.check_output("git -C %s remote get-url %s" % (repodir, remote), shell=True, …
89 subprocess.check_output(cmd, shell=True)
95 subprocess.check_output(cmd, shell=True, cwd=repodir)
99 subprocess.check_output(cmd, shell=True, cwd=repodir)
104 subprocess.check_output(cmd, shell=True, cwd=repodir)
108 subprocess.check_output(cmd, shell=True, cwd=repodir)
130 …ss.check_output('git rev-parse --show-toplevel', universal_newlines=True, shell=True, cwd=os.path.…
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/openbox/files/
H A D0001-Makefile.am-avoid-race-when-creating-autostart-direc.patch39 - @test -d $(shell dirname $(top_builddir)/$@) || \
40 - mkdir $(shell dirname $(top_builddir)/$@)
41 + mkdir -p $(shell dirname $(top_builddir)/$@)
46 - @test -d $(shell dirname $(top_builddir)/$@) || \
47 - mkdir $(shell dirname $(top_builddir)/$@)
48 + mkdir -p $(shell dirname $(top_builddir)/$@)
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/adduser/files/
H A D0001-adduser-set-default-shell-with-sbin-nologin.patch4 Subject: [PATCH] adduser: set default shell with /sbin/nologin
7 /sbin/nologin in oe-core. But the default shell of adduser is
10 Set the default shell with /sbin/nologin to fix the issue.
27 - $shell = $special_shell || '/usr/sbin/nologin';
28 + $shell = $special_shell || '/sbin/nologin';
/openbmc/openbmc-tools/reboot-ping-pong/
H A Drpp75 self.shell = "# ".encode()
80 self.obmcutil = Obmcutil(self.session, self.shell)
82 rc = self.session.expect([self.getty, self.shell])
94 self.session.expect(self.shell)
126 self.shell = "/? *#".encode()
150 rc = self.session.expect([self.petitboot, self.shell], timeout=None)
153 self.session.expect(self.shell)
157 rc = self.session.expect([self.petitboot, self.shell], timeout=None)
160 self.session.expect(self.shell)
167 self.session.expect(self.shell)
/openbmc/openbmc/poky/meta/recipes-graphics/glew/glew/
H A Dnotempdir.patch14 @@ -56,7 +56,6 @@ DIST_SRC_ZIP ?= $(shell pwd)/$(DIST_NAME
15 DIST_SRC_TGZ ?= $(shell pwd)/$(DIST_NAME).tgz
16 DIST_WIN32 ?= $(shell pwd)/$(DIST_NAME)-win32.zip
18 -DIST_DIR := $(shell mktemp -d /tmp/glew.XXXXXX)/$(DIST_NAME)
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-devtools/klibc/files/
H A Dcross-clang.patch11 -KLIBCCPPFLAGS += -isystem $(shell $(KLIBCCC) $(KLIBCCFLAGS) --print-file-name=include)
14 + -I$(shell $(KLIBCCC) $(KLIBCCFLAGS) --print-file-name=include)
22 -KLIBCLIBGCC_DEF := $(shell $(KLIBCCC) $(KLIBCCFLAGS) $(if $(filter gcc,$(cc-name)),--print-libgcc…
23 +KLIBCLIBGCC_DEF := $(shell $(KLIBCCC) $(KLIBCCFLAGS) --print-libgcc-file-name)
/openbmc/openbmc/poky/meta/recipes-core/ovmf/
H A Dovmf-shell-image.bb1 SUMMARY = "boot image with UEFI shell and tools"
9 WKS_FILE = "ovmf/ovmf-shell-image.wks"
14 # We want a minimal image with just ovmf-shell-efi unpacked in it. We
17 PACKAGE_INSTALL = "ovmf-shell-efi"
/openbmc/openbmc/poky/meta/recipes-support/debianutils/
H A Ddebianutils_5.22.bb46 ALTERNATIVE:${PN} = "add-shell installkernel remove-shell savelog which"
51 ALTERNATIVE_LINK_NAME[add-shell] = "${sbindir}/add-shell"
53 ALTERNATIVE_LINK_NAME[remove-shell] = "${sbindir}/remove-shell"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/vk-gl-cts/files/
H A D0001-cmake-Define-WAYLAND_SCANNER-and-WAYLAND_PROTOCOLS_D.patch19 …configure_file(${WAYLAND_XDG_SHELL_SRC_DIR}/xdg-shell.c ${DEQP_XDG_SHELL_GEN_OUTPUTS_DIR}/xdg-shel…
20 …configure_file(${WAYLAND_XDG_SHELL_SRC_DIR}/xdg-shell.h ${DEQP_XDG_SHELL_GEN_OUTPUTS_DIR}/xdg-shel…
/openbmc/u-boot/arch/arm/mach-k3/
H A Dconfig.mk10 ifeq ($(shell which openssl),)
14 SHA_VALUE= $(shell openssl dgst -sha512 -hex $(obj)/u-boot-spl.bin | sed -e "s/^.*= //g")
15 IMAGE_SIZE= $(shell cat $(obj)/u-boot-spl.bin | wc -c)
16 LOADADDR= $(shell echo $(CONFIG_SPL_TEXT_BASE) | sed -e "s/^0x//g")
17 MAX_SIZE= $(shell printf "%d" $(CONFIG_SYS_K3_MAX_DOWNLODABLE_IMAGE_SIZE))
/openbmc/openbmc/meta-arm/meta-arm/recipes-bsp/hafnium/hafnium/
H A D0001-Use-pkg-config-native-to-find-the-libssl-headers.patch20 -CRYPTO_LIBS = $(shell pkg-config --libs libcrypto 2> /dev/null || echo -lcrypto)
21 -CRYPTO_CFLAGS = $(shell pkg-config --cflags libcrypto 2> /dev/null)
22 +CRYPTO_LIBS = $(shell pkg-config-native --libs libcrypto 2> /dev/null || echo -lcrypto)
23 +CRYPTO_CFLAGS = $(shell pkg-config-native --cflags libcrypto 2> /dev/null)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/xmlsec1/xmlsec1/
H A Dxmlsec1-examples-allow-build-in-separate-dir.patch21 -CFLAGS += -I../include -g $(shell PKG_CONFIG_PATH=.. pkg-config --cflags xmlsec1 ) -DUNIX_SOCKETS…
22 -LDLIBS += -L../src/.libs -g $(shell PKG_CONFIG_PATH=.. pkg-config --libs xmlsec1 )
25 +CFLAGS += -I$(top_srcdir)/include -g $(shell PKG_CONFIG_PATH=$(top_srcdir) pkg-config --cflags xm…
26 +LDLIBS += -L$(top_builddir)/src/.libs -g $(shell PKG_CONFIG_PATH=$(top_srcdir) pkg-config --libs x…
/openbmc/openbmc/poky/meta/recipes-extended/mdadm/files/
H A D0001-Fix-the-path-of-corosync-and-dlm-header-files-check.patch24 -COROSYNC:=$(shell [ -d /usr/include/corosync ] || echo -DNO_COROSYNC)
25 -DLM:=$(shell [ -f /usr/include/libdlm.h ] || echo -DNO_DLM)
26 +COROSYNC:=$(shell [ -f $(SYSROOT)/usr/include/corosync/cmap.h ] || echo -DNO_COROSYNC)
27 +DLM:=$(shell [ -f $(SYSROOT)/usr/include/libdlm.h ] || echo -DNO_DLM)

12345678910>>...30