Jonathan GF- The makefile is NOT wrong. You need to do a make oldconfig then a make menuconfig as some of the variables have changed. If you don't do that, the variable doesn't get set.
Darrick Jonathan GF wrote: > Hi, > > the makefile is wrong. Something with the variable substitution of > RHINO_VER (ftp://ftp.rhinoequipment.com/Drivers/rhino-.tbz2 should be > ftp://ftp.rhinoequipment.com/Drivers/rhino-2.2.1.tbz2 or something > similar according to the mk). > > The exit is the next: > > ------------------------------------------------------------------------------------------------------------------------------------------------------------- > > > make[1]: Leaving directory > `/home/jgf/astlinux-trunk/build_i586/busybox-1.4.1-initrd' > rm /home/jgf/astlinux-trunk/build_i586/initrd/linuxrc > cp -a target/initrd/target_skeleton/linuxrc > /home/jgf/astlinux-trunk/build_i586/initrd/linuxrc > toolchain/getter_script.sh -P /home/jgf/astlinux-trunk/dl > ftp://ftp.rhinoequipment.com/Drivers/rhino-.tbz2 > --21:54:27-- ftp://ftp.rhinoequipment.com/Drivers/rhino-.tbz2 > => `/home/jgf/astlinux-trunk/dl/rhino-.tbz2' > Resolving ftp.rhinoequipment.com... 74.54.1.27 <http://74.54.1.27> > Connecting to ftp.rhinoequipment.com|74.54.1.27|:21.. . connected. > Logging in as anonymous ... Logged in! > ==> SYST ... done. ==> PWD ... done. > ==> TYPE I ... done. ==> CWD /Drivers ... done. > ==> PASV ... done. ==> RETR rhino-.tbz2 ... > No such file `rhino-.tbz2'. > > Retrying from astlinux alternate site... > --21:54:30-- http://files.astlinux.org/rhino-.tbz2 > => `/home/jgf/astlinux-trunk/dl/rhino-.tbz2' > Resolving files.astlinux.org... 208.109.78.142 <http://208.109.78.142> > Connecting to files.astlinux.org|208.109.78.142|:80... connected. > HTTP request sent, awaiting response... 404 Not Found > 21:54:31 ERROR 404: Not Found. > > --21:54:31-- http://files.astlinux.org/rhino-.tbz2.sha1 > => `dl/rhino-.tbz2.sha1' > Resolving files.astlinux.org... 208.109.78.142 <http://208.109.78.142> > Connecting to files.astlinux.org|208.109.78.142|:80... connected. > HTTP request sent, awaiting response... 404 Not Found > 21:54:32 ERROR 404: Not Found. > > sha1sum: dl/rhino-.tbz2.sha1: No such file or directory > rhino-.tbz2 failed verification - exiting > make: *** [/home/jgf/astlinux-trunk/dl/rhino-.tbz2] Error 1 > > real 0m32.335s > user 0m5.804s > sys 0m7.976s > > > > > > > On Nov 19, 2007 9:30 PM, <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > Revision: 1385 > > http://astlinux.svn.sourceforge.net/astlinux/?rev=1385&view=rev > <http://astlinux.svn.sourceforge.net/astlinux/?rev=1385&view=rev> > Author: dhartman > Date: 2007-11-19 12:30:06 -0800 (Mon, 19 Nov 2007) > > Log Message: > ----------- > rhino package update--we need to look at this closer, but it works > > Modified Paths: > -------------- > trunk/package/rhino/Config.in > trunk/package/rhino/rhino.mk > > Modified: trunk/package/rhino/Config.in > =================================================================== > --- trunk/package/rhino/Config.in 2007-11-19 19:23:53 UTC (rev > 1384) > +++ trunk/package/rhino/Config.in 2007-11-19 20:30:06 UTC (rev > 1385) > @@ -1,9 +1,28 @@ > config BR2_PACKAGE_RHINO > bool "rhino" > - default n > + default y > select BR2_PACKAGE_ZAPTEL > help > Rhino - Support for Rhino analog and digital PCI cards > - > + Be sure to select the correct version! See the > specific help > + for each to know which is the correct version for > your hardware. > http://www.rhinoequipment.com > +choice > + prompt "Driver Version" > + depends BR2_PACKAGE_RHINO > + default BR2_PACKAGE_RHINO_v2 > + help > + Select which version series to compile and install. > > + config BR2_PACKAGE_RHINO_v1 > + bool "Rhino Drivers 1.1.1" > + help > + Select this if you have a Rhino digital card > without EC or that > + is not running firmware 36 or above. > + config BR2_PACKAGE_RHINO_v2 > + bool "Rhino Drivers 2.2.1" > + help > + Select this if you are running a recently > purchased Rhino card, > + or one you have upgraded to version 36 or > above. This applies > + specifically to digital cards with EC. > +endchoice > > Modified: trunk/package/rhino/rhino.mk > =================================================================== > --- trunk/package/rhino/rhino.mk 2007-11-19 19:23:53 UTC (rev > 1384) > +++ trunk/package/rhino/rhino.mk 2007-11-19 20:30:06 UTC (rev > 1385) > @@ -3,16 +3,26 @@ > # rhino - Package for Rhino PCI drivers. > # > ############################################################# > +ifeq ($(strip $(BR2_PACKAGE_RHINO_v1)),y) > RHINO_VER := 1.1.1 > +endif > +ifeq ($(strip $(BR2_PACKAGE_RHINO_v2)),y) > +RHINO_VER := 2.2.1 > +endif > RHINO_SOURCE := rhino-$(RHINO_VER).tbz2 > RHINO_SITE := ftp://ftp.rhinoequipment.com/Drivers > RHINO_DIR := $(BUILD_DIR)/rhino-$(RHINO_VER) > RHINO_CAT := bzcat > RHINO_TARGET_BINARY := lib/modules/$(LINUX_VERSION)/misc/r1t1.ko > -RHINO_MODULES := r1t1 r4fxo rxt1 rcbfx > +RHINO_MODULES := r1t1 rxt1 rcbfx > +ifeq ($(strip $(BR2_PACKAGE_RHINO_v1)),y) > +RHINO_MODULES += r4fxo > +RHINO_LEGACY_MODULES := > +endif > +ifeq ($(strip $(BR2_PACKAGE_RHINO_v2)),y) > +RHINO_LEGACY_MODULES := r4fxo > +endif > > -#LINUX_VER=$(LINUX_VERSION) > - > $(DL_DIR)/$(RHINO_SOURCE): > $(WGET) -P $(DL_DIR) $(RHINO_SITE)/$(RHINO_SOURCE) > > @@ -28,16 +38,16 @@ > $(RHINO_DIR)/.built: $(RHINO_DIR)/.configured > $(MAKE1) KVER=$(LINUX_VERSION) > KINSTDIR=lib/modules/$(LINUX_VERSION)/kernel ZAPDIR=$(ZAPTEL_DIR) \ > PWD=$(RHINO_DIR) $(TARGET_CONFIGURE_OPTS) > INSTALL_PREFIX=$(TARGET_DIR) KSRC=$(BUILD_DIR)/linux \ > - MODULES="$(RHINO_MODULES)" > KMOD=$(TARGET_DIR)/lib/modules/$(LINUX_VERSION) > ARCH=$(ZAPTEL_TARGET_ARCH) \ > - KINCLUDES=$(STAGING_DIR)/include \ > + LEGACY_MODULES="$(RHINO_LEGACY_MODULES)" > MODULES="$(RHINO_MODULES)" \ > + KMOD=$(TARGET_DIR)/lib/modules/$(LINUX_VERSION) > ARCH=$(ZAPTEL_TARGET_ARCH) KINCLUDES=$(STAGING_DIR)/include \ > -C $(RHINO_DIR) all > touch $(RHINO_DIR)/.built > > $(TARGET_DIR)/$(RHINO_TARGET_BINARY): $(RHINO_DIR)/.built > $(MAKE1) KVER=$(LINUX_VERSION) > KINSTDIR=lib/modules/$(LINUX_VERSION)/kernel ZAPDIR=$(ZAPTEL_DIR) \ > PWD=$(RHINO_DIR) $(TARGET_CONFIGURE_OPTS) > INSTALL_PREFIX=$(TARGET_DIR) KSRC=$(BUILD_DIR)/linux \ > - MODULES="$(RHINO_MODULES)" > KMOD=$(TARGET_DIR)/lib/modules/$(LINUX_VERSION) > ARCH=$(ZAPTEL_TARGET_ARCH) \ > - KINCLUDES=$(STAGING_DIR)/include \ > + LEGACY_MODULES="$(RHINO_LEGACY_MODULES)" > MODULES="$(RHINO_MODULES)" \ > + KMOD=$(TARGET_DIR)/lib/modules/$(LINUX_VERSION) > ARCH=$(ZAPTEL_TARGET_ARCH) KINCLUDES=$(STAGING_DIR)/include \ > -C $(RHINO_DIR) install > $(DEPMOD) -ae -F $(LINUX_DIR)/System.map -b $(TARGET_DIR) -r > $(LINUX_VERSION) > > > > This was sent by the SourceForge.net collaborative development > platform, the world's largest Open Source development site. > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > <http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/> > _______________________________________________ > Astlinux-commits mailing list > [EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]> > https://lists.sourceforge.net/lists/listinfo/astlinux-commits > > Donations to support AstLinux are graciously accepted via PayPal to > [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>. > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > ------------------------------------------------------------------------ > > _______________________________________________ > Astlinux-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/astlinux-users > > Donations to support AstLinux are graciously accepted via PayPal to [EMAIL > PROTECTED] -- Darrick Hartman DJH Solutions, LLC http://www.djhsolutions.com ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Astlinux-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/astlinux-users Donations to support AstLinux are graciously accepted via PayPal to [EMAIL PROTECTED]
