|
@@ -32,7 +32,7 @@ To generate the patches, just download the epg.xml from Matt Huisman's site, and
|
|
|
|
|
|
2. Make sure the channel names in epg-modified.xml match the output from mythtv db:
|
|
|
```bash
|
|
|
-sudo mysql -u root -p mythconverg -e "SELECT channum,chanid,icon,name,xmltvid,sourceid FROM channel WHERE visible ORDER BY channum+0;"
|
|
|
+sudo mysql -u root -p mythconverg -e "SELECT channum,chanid,icon,name,xmltvid,useonairguide,sourceid FROM channel WHERE visible AND channum <> '' AND deleted IS NULL ORDER BY channum+0;"
|
|
|
```
|
|
|
|
|
|
3. Generate the diff between the original and modified xml, and save as rename.patch:
|
|
@@ -42,11 +42,4 @@ diff -u epg.xml epg-modified.xml > rename.patch
|
|
|
|
|
|
4. Apply the rename.patch to the original xml
|
|
|
|
|
|
-5. Remove any channels in epg-modified.xml that mythtv hasn't found, so long as you are sure you can't get from your location
|
|
|
-
|
|
|
-6. Generate the diff between the the (patched) original xml and the modified xml, and save as remove.patch:
|
|
|
-```bash
|
|
|
-diff -u epg.xml epg-modified.xml > remove.patch
|
|
|
-```
|
|
|
-
|
|
|
The modifications are split up in the case that some users neeed renames but not removals.
|