mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
272 B

  1. #!/bin/sh -e
  2. # this is required for kernels older than 2.6.14
  3. [ "$VENDOR_ID" -a "$MODEL_ID" -a "$SPECIFIER_ID" -a "$VERSION" ] || exit 1
  4. printf "MODALIAS='ieee1394:ven%08Xmo%08Xsp%08Xver%08X'\n" \
  5. $((0x$VENDOR_ID)) $((0x$MODEL_ID)) $((0x$SPECIFIER_ID)) $((0x$VERSION))