WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: is SCTP supported by tiny core linux?  (Read 1619 times)

Offline ochinchina

  • Newbie
  • *
  • Posts: 2
is SCTP supported by tiny core linux?
« on: October 10, 2014, 10:49:31 PM »
I want to use sctp application in the tiny core linux but failed. So I use "lsmod" to list all installed modules in the tiny core linux. The SCTP module is not installed.

Is there any way to enable the SCTP function in the tiny core linux?

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: is SCTP supported by tiny core linux?
« Reply #1 on: October 10, 2014, 11:03:35 PM »
As per:

http://www.tinycorelinux.net/5.x/x86/release/src/kernel/config-3.8.13-tinycore

# CONFIG_NF_CT_PROTO_SCTP is not set
# CONFIG_NETFILTER_XT_MATCH_SCTP is not set
# CONFIG_IP_SCTP is not set

..so I guess you'd need a custom kernel.

Offline ochinchina

  • Newbie
  • *
  • Posts: 2
Re: is SCTP supported by tiny core linux?
« Reply #2 on: October 12, 2014, 06:39:28 PM »
That is a bad news

Is there any instruction for compiling the tiny core linux? I want to add the SCTP support to the tiny core linux.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: is SCTP supported by tiny core linux?
« Reply #3 on: October 12, 2014, 10:26:56 PM »
If you search these forums, compiling the kernel has been mentioned several times, but basically:
Code: [Select]
$ make mrproper
$ cp config-3.8.13-tinycore .config
$ make oldconfig
$ make menuconfig [adjust sctp settings]
$ make

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10957
Re: is SCTP supported by tiny core linux?
« Reply #4 on: October 13, 2014, 01:06:40 AM »
Will add for 6.x.
The only barriers that can stop you are the ones you create yourself.