-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Synokernel linuxtv #9
base: synokernel-linuxtv
Are you sure you want to change the base?
Conversation
Wow! Sorty for the late response but I just noticed your PR :) (e.g. I'm not being notified on this repo). Normally PR are being pushed against spksrc master repository but I get it that you've changed one of my development branch in here, nice. Note that I have rather limited cycles. This really is on my todo list but Thnx and I'll reach-out again in early fall or earlier. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, FYI, I'm currently looking at including DSM-7.x kernel sources in this PR SynoCommunity#5790 but this is far from being ready yet.
MEDIA_VERSION = 2022-06-05-f2906aa86338 | ||
#MEDIA_VERSION = LATEST | ||
MEDIA_VERSION = LATEST |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Issue in using this is that the builds become no longer reproducible. That's why specific build version is being used, in hope to update to newer builds once every little while.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the archive was removed and the download broken so I used latest instead
SPK_VERS = $(SPK_GIT_DATE)~$(SPK_GIT_HASH) | ||
SPK_VERS = $(SPK_GIT_DATE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same applies here as linked.
default:"regmap-i2c rc-core mc videodev tveeprom videobuf2-common videobuf2-v4l2 videobuf2-memops videobuf2-vmalloc dvb-core dvb-usb dvb_usb_v2 uvcvideo dvb-usb-rtl28xxu" | ||
#HAUPPAUGE_WINTV_DUALHD:"rc-hauppauge si2157 lgdt3306a em28xx em28xx-dvb em28xx-rc" | ||
#PCTV461E:"rc-pinnacle-pctv-hd ts2020 a8293 m88ds3103 em28xx em28xx-dvb em28xx-rc" | ||
#MYGICA_T230:"rc-dvbsky si2157 si2168 m88ds3103 dvb-usb-dvbsky" | ||
#SMS_SIANO_MDTV:"smsmdtv smsdvb smsusb" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default
is always being included when loading any other lines. In your case here you should rather create a new line specifically for this adapter module loading.
Looking into the kernel the Makefile
entry name is CONFIG_DVB_USB_RTL28XXU
to which in this case I'd use:
RTL28XXU="rtl28xxu"
So when calling the loading script with RTL28XXU
as config option to use, it first loads all modules from the default
line then will load this specific mode as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok makes sense
The work was useful as I was able to install the modiules rather easily this wat, bumped into some issues thats why I opened the PR |
Description
Useful work! I compiled it to install drivers for dvb tuners on my synology, saved me quite some time.
Fixes #
Checklist
all-supported
completed successfullyType of change