# Makefile for dtv-scan-tables (26 May 2014) # Copyright 2014 Jonathan McCrohan # The vast majority of the DVB scan files contained in this repository # are DVBv3 scan files. This format has been deprecated in favor of the # DVBv5 scan format. # # Use this makefile to convert the existing DVBv3 scan files to DVBv5 # scan files until such time as DVBv5 scan format is in widespread use. # # Requires dvb-format-convert from v4l-utils. MKDIR = mkdir -p DVBFORMATCONVERT = dvb-format-convert DVBV3DIRS = atsc dvb-c dvb-s dvb-t DVBV3CHANNELFILES = $(foreach dir,$(DVBV3DIRS),$(wildcard $(dir)/*)) DVBFORMATCONVERT_CHANNEL_DVBV5 = -ICHANNEL -ODVBV5 DVBFORMATCONVERT_CHANNEL_DVBV3 = -IDVBV5 -OCHANNEL DVBV3OUTPUTDIR = dvbv3 DVBV5OUTPUTDIR = dvbv5 makedvbv5: @$(foreach var,$(DVBV3DIRS), $(MKDIR) $(DVBV5OUTPUTDIR)/$(var);) @$(foreach var,$(DVBV3CHANNELFILES), $(DVBFORMATCONVERT) $(DVBFORMATCONVERT_CHANNEL_DVBV5) $(var) $(DVBV5OUTPUTDIR)/$(var);) makedvbv3: @$(foreach var,$(DVBV3DIRS), $(MKDIR) $(DVBV3OUTPUTDIR)/$(var);) @$(foreach var,$(DVBV3CHANNELFILES), $(DVBFORMATCONVERT) $(DVBFORMATCONVERT_CHANNEL_DVBV3) $(DVBV5OUTPUTDIR)/$(var) $(DVBV3OUTPUTDIR)/$(var);) clean: rm -rf $(DVBV3OUTPUTDIR)/ $(DVBV5OUTPUTDIR)/ 5905e4c3d31e2ad4702de8a5c43c143874'>refslogtreecommitdiffstats
path: root/dvb-t/se-Kisa (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2012-03-10update scan files for Ireland (ie-*)Jonathan McCrohan12-24/+36
Add upcoming Saorview MUX2. Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
2012-03-10update scan files for de-*Christoph Pfister13-35/+32
2012-03-10update scan file for fi-soneraChristoph Pfister1-0/+11
submitted by mikko.autio1 gmail.com
2012-03-10update scan file for uk-EmleyMoorChristoph Pfister1-8/+5
submitted by gnu_andrew member.fsf.org
2012-03-10remove scan file for nl-Ziggo-ZwolleChristoph Pfister1-26/+0
obsoleted by nl-Ziggo submitted by rigolo gmail.com
2012-03-10replace it-* by it-AllChristoph Pfister28-624/+135
it-All is a subset of auto-Default there are no exceptions in the VHF band anymore --> auto-Italy is obsolete
2012-02-05add scan files for Ireland (ie-*)Jonathan McCrohan12-0/+48
Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
2012-03-10update scan file for uk-CrystalPalaceChristoph Pfister1-10/+17
submitted by rankincj yahoo.com
2012-03-10update scan file for es-HuescaChristoph Pfister1-7/+14
submitted by vha spheresystems.co.uk
2013-01-09Fix differences from dvb-apps treeMauro Carvalho Chehab2-20/+23
Somehow, a few changesets didn't seem to export correctly. So, fix the differences manually.