Home
last modified time | relevance | path

Searched refs:DEVNAME (Results 1 – 8 of 8) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-core/udev/udev-extraconf/
H A Dmount.sh32 if [ ` expr match "$DEVNAME" "$line" ` -gt 0 ];
34 logger "udev/mount.sh" "[$DEVNAME] is marked to ignore"
50 name="`basename "$DEVNAME"`"
59 get_label_name "${DEVNAME}"
69 grep "^[[:space:]]*$DEVNAME" /etc/fstab && return
71 tmp="$(lsblk -o $n $DEVNAME | sed -e '1d')"
78 logger "mount.sh/automount" "Filesystem '$ID_FS_TYPE' on '${DEVNAME}' is unsupported"
101 if ! $MOUNT --collect --no-block -t auto $DEVNAME "$MOUNT_BASE/$name"
112 name="`basename "$DEVNAME"`"
115 $PMOUNT $DEVNAME 2> /dev/null
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/linuxconsole/linuxconsole/
H A D51-these-are-not-joysticks-rm.rules7 …=="046d", ATTRS{idProduct}=="c30a", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_J…
9 …=="04d9", ATTRS{idProduct}=="a0df", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_J…
11 …=="056a", ATTRS{idProduct}=="0010", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_J…
13 …=="056a", ATTRS{idProduct}=="0011", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_J…
15 …=="056a", ATTRS{idProduct}=="0012", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_J…
17 …=="056a", ATTRS{idProduct}=="0013", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_J…
19 …=="056a", ATTRS{idProduct}=="0014", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_J…
21 …=="056a", ATTRS{idProduct}=="0015", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_J…
23 …=="056a", ATTRS{idProduct}=="0016", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_J…
25 …=="056a", ATTRS{idProduct}=="0017", KERNEL=="js[0-9]*", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_J…
[all …]
H A D60-joystick.rules2 ACTION=="add", KERNEL=="js*", RUN+="/usr/bin/jscal-restore %E{DEVNAME}"
/openbmc/u-boot/tools/env/
H A Dfw_env.c77 #define DEVNAME(i) envdevices[(i)].devname macro
246 char *devname = (char *)DEVNAME(dev_id); in ubi_check_dev()
251 if (!is_ubi_devname(DEVNAME(dev_id))) in ubi_check_dev()
274 DEVNAME(dev_id) = volume_devname; in ubi_check_dev()
947 DEVNAME(dev), strerror(errno)); in flash_read_buf()
953 DEVNAME(dev)); in flash_read_buf()
1098 DEVNAME(dev), strerror(errno)); in flash_write_buf()
1106 DEVNAME(dev), strerror(errno)); in flash_write_buf()
1116 DEVNAME(dev), strerror(errno)); in flash_write_buf()
1148 DEVNAME(dev)); in flash_flag_obsolete()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/openct/openct/
H A Detc-openct_usb.in-modify-UDEVINFO.patch19 @@ -15,10 +15,10 @@ if [ -z "$DEVNAME" ]; then
31 DEVNAME=/dev/$($UDEVINFO --query=name --path=$(dirname $DEVPATH))
/openbmc/qemu/docs/
H A Dqdev-device-use.txt60 -device DEVNAME,drive=DRIVE-ID,DEV-OPTS...
74 if=ide, if=scsi and if=xen. The new way uses DEVNAME for that.
83 -device DEVNAME,drive=DRIVE-ID,bus=IDE-BUS,unit=UNIT
85 where DEVNAME is either ide-hd or ide-cd, IDE-BUS identifies an IDE
101 -device DEVNAME,drive=DRIVE-ID,bus=ID.0,scsi-id=UNIT
103 where DEVNAME is either scsi-hd, scsi-cd or scsi-generic.
170 -device DEVNAME,chardev=CHR-ID,DEV-OPTS...
172 The appropriate DEVNAME depends on the machine type. For type "pc":
252 -device DEVNAME,netdev=NET-ID,mac=MACADDR,DEV-OPTS...
254 DEVNAME equals MODEL, except for virtio you have to name the virtio
[all …]
/openbmc/u-boot/common/
H A Dusb_kbd.c57 #define DEVNAME "usbkbd" macro
511 strcpy(usb_kbd_dev.name, DEVNAME);
527 if (strcmp(stdinname, DEVNAME))
534 error = console_assign(stdin, DEVNAME);
580 dev = stdio_get_by_name(DEVNAME);
621 sdev = stdio_get_by_name(DEVNAME);
/openbmc/u-boot/test/dm/
H A Dregulator.c34 DEVNAME = 0, enumerator
63 devname = regulator_names[i][DEVNAME]; in dm_test_power_regulator_get()