diff --git a/Makefile b/Makefile deleted file mode 100644 index 9b929a8..0000000 --- a/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright (C) 2012 Mark Blakeney. This program is distributed under -# the terms of the GNU General Public License. -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or any -# later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License at for more -# details. - -PROG = edid-rw -SRC = README.md -DOC = $(SRC:.md=.html) - -doc: $(DOC) - -$(DOC): $(SRC) - markdown $< >$@ - -check: - flake8 $(PROG) - vermin --no-tips -i -q $(PROG) - -install:: - install -CD $(PROG) ~/bin - -clean:: - rm -rf $(DOC) diff --git a/README.md b/README.md index 5e47338..aa7a81d 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ -## edid-rw: A utility to read and write a display EDID value +## edid-checked-writer: A utility to read and write a display EDID value -_Sorry, but I do not support this project anymore. I wrote this utility -for my own one-off personal use many years ago but have no means to test -and support changes nowadays. Feel free to fork and improve it._ +This is a fork of Mark Blakeney's https://github.com/bulletmark/edid-rw updated +to perform verification after writing EDID. + +The binary name itself kept to be `./edid-rw` for commands compatitbility. ### Overview @@ -20,11 +21,11 @@ EDID. ### Installation -Requires python3 smbus module, and edid-decode utility. +Requires python3 smbus module, and edid-decode, i2cdetect utilities. Install these prerequisites on Debian/Ubuntu: - sudo apt-get install python3-smbus edid-decode + sudo apt-get install python3-smbus edid-decode i2c-tools Or, install these prerequisites on Arch: @@ -32,7 +33,7 @@ Or, install these prerequisites on Arch: Get this source code: - git clone https://github.com/bulletmark/edid-rw + git clone https://github.com/galkinvv/edid-checked-writer cd edid-rw This utility should run using Python version 3.2+. It does not work with @@ -66,9 +67,6 @@ write!* vim -b edid.bin # Then use xxd within vim, see ":h xxd" in vim sudo ./edid-rw -w 0 . ### License