infix icon indicating copy to clipboard operation
infix copied to clipboard

Refactor /run/system.json for USB

Open mattiaswal opened this issue 1 year ago • 0 comments

"usb-ports": [
  {
    "name": "USB",
    "path": "/sys/bus/usb/devices/usb1/authorized"
  },
  {
    "name": "USB",
    "path": "/sys/bus/usb/devices/usb1/authorized_default"
  },
  {
    "name": "USB2",
    "path": "/sys/bus/usb/devices/usb2/authorized"
  },
  {
    "name": "USB2",
    "path": "/sys/bus/usb/devices/usb2/authorized_default"
  }
]

Should be:

"usb-ports": [
  {
    "name": "USB",
    "path": "/sys/bus/usb/devices/usb1"
  },
  {
    "name": "USB2",
    "path": "/sys/bus/usb/devices/usb2"
  }
]

Pass criteria: the usb-test passes. Remember to change alder.dtsi also.

mattiaswal avatar Feb 26 '24 09:02 mattiaswal