Moderator: SlashBeast
Czyżbym czegoś nie dodał w nowym kernelu? Faktem jest że wszystkie nowe opcje jaki mi wyskoczyły w czasie make oldconfig dałem na Nie.make -C driver
make[1]: Entering directory `/home/sebastian/eagle-usb-2.3.2/driver'
USE_CMVS=1 make -C /usr/src/linux SUBDIRS=/home/sebastian/eagle-usb-2.3.2/driver modules
make[2]: Entering directory `/usr/src/linux-2.6.14-gentoo-r2'
CC [M] /home/sebastian/eagle-usb-2.3.2/driver/eu_main.o
CC [M] /home/sebastian/eagle-usb-2.3.2/driver/eu_utils.o
CC [M] /home/sebastian/eagle-usb-2.3.2/driver/Pipes.o
/home/sebastian/eagle-usb-2.3.2/driver/Pipes.c: In function `eu_write_completion':
/home/sebastian/eagle-usb-2.3.2/driver/Pipes.c:922: error: `URB_ASYNC_UNLINK' undeclared (first use in this function)
/home/sebastian/eagle-usb-2.3.2/driver/Pipes.c:922: error: (Each undeclared identifier is reported only once
/home/sebastian/eagle-usb-2.3.2/driver/Pipes.c:922: error: for each function it appears in.)
make[3]: *** [/home/sebastian/eagle-usb-2.3.2/driver/Pipes.o] Błąd 1
make[2]: *** [_module_/home/sebastian/eagle-usb-2.3.2/driver] Błąd 2
make[2]: Leaving directory `/usr/src/linux-2.6.14-gentoo-r2'
make[1]: *** [eagle-usb.ko] Błąd 2
make[1]: Leaving directory `/home/sebastian/eagle-usb-2.3.2/driver'
make: *** [build] Błąd 2
Nie rozumiem co to może mieć do rzeczy.CFLAGS="-O2 -march=i686 -pipe"
CHOST="i686-pc-linux-gnu"
CXXFLAGS="-O2 -march=i686 -pipe"
USE="7zip a52 aac acpi activefilter atm audiofile bash-completion big-tables
bigger-fonts bind-mysql bl browserplugin bzip2 cdparanoia cdrom
clamav clamd cluster custom-cflags dga dhcp divx4linux djbfft dv
dvb dvd dvdread dxr3 edl emoticon extensions extraengine extraicons
extramodules extras fat fb ffmpeg flash freetds frontbase ftp
geometry gg glx gzip hal hfs html http id3 innodb irc jabber
jack-tmpfs javascript jfs kdeenablefinal kdepim kdexdeltas lame
lesstif libclamav lm_sensors log4j mime ming mmx mp4live mpeg2
mpeg4 mplayer mppe-mppc msql mssql multitarget mysql mysqli ntfs
nvidia on-the-fly-crypt openal openssl password pdf pheaders player
plugin print rar real reiserfs rogue rrdtool rss sendmail sensord
smime speech sybase symlink syslog sysvipc szip tga theora tidy
tlen unicode usb userlocales utf8 v4l v4l2 vcd videos vidix
virus-scan voice web win32codecs wmf xanim xatrix xfs xvid xvmc
-arts -gnome -gtk"
LINGUAS="pl en"
LC_ALL="pl_PL"
LANGUAGE="48"
#ACCEPT_KEYWORDS="~x86"
PORTAGE_TMPDIR=/var/tmp
PORTDIR=/usr/portage
DISTDIR=${PORTDIR}/distfiles
PKGDIR=${PORTDIR}/packages
PORT_LOGDIR=/var/log/portage
PORTDIR_OVERLAY=/usr/local/portage
FETCHCOMMAND="/usr/bin/wget -t 5 --passive-ftp \${URI} -P \${DISTDIR}"
RESUMECOMMAND="/usr/bin/wget -c -t 5 --passive-ftp \${URI} -P \${DISTDIR}"
SYNC="rsync://rsync.europe.gentoo.org/gentoo-portage"
RSYNC_RETIES="3"
RSYNC_TIMEOUT=180
MAKEOPTS="-j2"
PORTAGE_NICENESS=5
AUTOCLEAN="yes"
PORTAGE_TMPFS=/dev/shm
FEATURES="sandbox ccache userpriv usersandbox fixpackages"
CCACHE_SIZE="2G"
CCACHE_DIR="/var/tmp/ccache"
DISTCC_DIR=${PORTAGE_TMPDIR}/.distcc
RSYNC_EXLUDEFROM=/etc/portage/rsync_excludes
ALSA_CARDS="ens1371"
GENTOO_MIRRORS="http://gentoo.zie.pg.gda.pl http://pandemonium.tiscali.de/pub/gentoo/ ftp://ftp.du.se/pub/os/gentoo ftp://gd.tuwien.ac.at/opsys/linux/gentoo/"
Code: Select all
ACCEPT_KEYWORDS="~x86" emerge eagle-usbModem synchronizuje łącze w czasie ładowania systemu, ale nie uruchamia usługi (nie wydaje polecenia startadsl).#!/sbin/runscript
depent() [
need net
]
start() [
ebegin "Starting ADSL connection"
startadsl
eend $? "Failed to start ADSL connection"
]
stop() [
ebegin "Stoping ADSL connection"
stopadsl
eend $? "Failed to stop ADSL connection"
Code: Select all
#!/sbin/runscript
depend(){
need hotplug coldplug
}
start(){
ebegin "Starting ADSL connection"
eaglectrl -w
startadsl
eend $? "Failed to start ADSL connection"
}
stop(){
ebegin "Stopping ADSL connection"
stopadsl
eend $? "Failed to stop ADSL connection"
}Code: Select all
<eaglectrl>
# configuration file for eagle-usb driver
#
# if you do not want to use CMV
#
# VPI / VCI are in hexa
# for example, (8, 23) is (8,35) in decimal
VPI=00000000
VCI=00000023
#The following values are valid for encapsulation :
#MPOA_MODE_BRIDGED_ETH_LLC ----> 1 RFC2516 Bridged PPPoE LLC
#MPOA_MODE_BRIDGED_ETH_VC ----> 2 RFC2516 Bridged PPPoE VCmux
#MPOA_MODE_ROUTED_IP_LLC ----> 3 RFC1483/2684 Routed IP LLC-SNAP
#MPOA_MODE_ROUTED_IP_VC ----> 4 RFC1483/2684 Routed IP (IPoA) VCmux
#MPOA_MODE_PPPOA_LLC ----> 5 RFC2364 PPPoA LLC
#MPOA_MODE_PPPOA_VC ----> 6 RFC2364 PPPoA VCmux
Encapsulation=00000006
# A for CMV use, 1 otherwise
Linetype=0000000A
RatePollFreq=00000009
</eaglectrl>
STATIC_IP=none
ISP=PL01
LANG=pl
ASYNCHRONOUS_START=1