Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: timvideos/HDMI2USB-litex-firmware
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1d5a391fb907
Choose a base ref
...
head repository: timvideos/HDMI2USB-litex-firmware
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d60c5ec7a76b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 30, 2017

  1. Only the udev rules are actually a problem

    The ixo-usb-jtag package in Debian is a firmware-only package, without
    any udev rules.
    stefanor committed Dec 30, 2017
    Copy the full SHA
    7ba06a8 View commit details
  2. Merge pull request #385 from stefanor/timvideos-ppa-package-problem

    Only the udev rules are actually a problem
    mithro authored Dec 30, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d60c5ec View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 scripts/enter-env.sh
8 changes: 4 additions & 4 deletions scripts/enter-env.sh
Original file line number Diff line number Diff line change
@@ -45,10 +45,10 @@ if echo "${SETUP_DIR}" | grep -q ':'; then
exit 1
fi

# Check ixo-usb-jtag *isn't* install
if [ -d /lib/firmware/ixo-usb-jtag/ ]; then
echo "Please uninstall ixo-usb-jtag package, the required firmware is"
echo "included in the HDMI2USB modeswitch tool."
# Check ixo-usb-jtag *isn't* installed
if [ -e /lib/udev/rules.d/85-ixo-usb-jtag.rules ]; then
echo "Please uninstall ixo-usb-jtag package from the timvideos PPA, the"
echo "required firmware is included in the HDMI2USB modeswitch tool."
echo
echo "On Debian/Ubuntu run:"
echo " sudo apt-get remove ixo-usb-jtag"