From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail2.tohojo.dk (mail2.tohojo.dk [77.235.48.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by huchra.bufferbloat.net (Postfix) with ESMTPS id C658A21FEDD for ; Sun, 16 Aug 2015 03:01:57 -0700 (PDT) X-Virus-Scanned: amavisd-new at mail2.tohojo.dk DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=toke.dk; s=201310; t=1439719313; bh=/p8pbXclzGbESTo7IEfr5x9z5BNt7dvv44OCLTd3L1Y=; h=From:To:Cc:Subject:References:Date:In-Reply-To; b=pZuulx8Tm2GGSHSzLLitr3WwzEmp4ysh3EkNo1RTKWn+MUlohB+rO75XNm20yDioT rHYlDIYKRtVq4m3n7rCMX01WLHmgKISiFBQLJvxavDrTaZVxiccWvZTttC1bo7sVsI 2BEZZPd3HrO6TuKRdnw7wE8T9KGIHriaAmRXapmk= Sender: toke@toke.dk Received: by alrua-x1.borgediget.toke.dk (Postfix, from userid 1000) id 9D44543D04; Sun, 16 Aug 2015 12:01:52 +0200 (CEST) From: =?utf-8?Q?Toke_H=C3=B8iland-J=C3=B8rgensen?= To: Maciej Soltysiak References: <20150813225046.81E9B203@taggart.lackof.org> <87io8issh1.fsf@toke.dk> Date: Sun, 16 Aug 2015 12:01:52 +0200 In-Reply-To: (Maciej Soltysiak's message of "Sat, 15 Aug 2015 22:15:24 +0200") X-Clacks-Overhead: GNU Terry Pratchett Message-ID: <87h9nzzh4f.fsf@toke.dk> MIME-Version: 1.0 Content-Type: text/plain Cc: "cerowrt-devel@lists.bufferbloat.net" Subject: Re: [Cerowrt-devel] ar71xx CC builds and tc X-BeenThere: cerowrt-devel@lists.bufferbloat.net X-Mailman-Version: 2.1.13 Precedence: list List-Id: Development issues regarding the cerowrt test router project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Aug 2015 10:02:20 -0000 Maciej Soltysiak writes: > On trunk with ceropackages, I'm getting errors when installing sqm-scripts: > > root@OpenWrt:/etc# opkg install sqm-scripts > Installing sqm-scripts (1.0-3) to root... > Downloading > http://downloads.openwrt.org/snapshots/trunk/ar71xx/generic/packages/packages/sqm-scripts_1.0-3_all.ipk. It looks like this is pulling in the package from the openwrt snapshots repo. > * satisfy_dependencies_for: Cannot satisfy the following dependencies for > sqm-scripts: > * kernel (= 4.1.4-1-68b085cb2174718ce2247e1fbff8c9c1) * kernel (= > 4.1.4-1-68b085cb2174718ce2247e1fbff8c9c1) * kernel (= > 4.1.4-1-68b085cb2174718ce2247e1fbff8c9c1) * kernel (= > 4.1.4-1-68b085cb2174718ce2247e1fbff8c9c1) * kernel (= > 4.1.4-1-68b085cb2174718ce2247e1fbff8c9c1) * > * opkg_install_cmd: Cannot install package sqm-scripts. This is a kernel version mismatch issue. Unfortunately, when a package depends on a kernel module, the build system makes the dependency be for a specific version of the kernel, so you can't just pull packages from incompatible repos. To get your self-built version of the package onto the router, you can do one of: 1. Select it in menuconfig to be built into the image as you generate it (press Y). Then it will be included as you flash. 2. Manually SCP the .ipk from bin/ar71xx/packages/cero/ to the router after flashing, then installing with opkg. 3. Make the contents of bin/ar71xx/packages available on a web server and point the opkg.conf on your router at that. -Toke