From owner-freebsd-questions@FreeBSD.ORG Tue Jun 17 17:51:49 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD8AFF2F for ; Tue, 17 Jun 2014 17:51:49 +0000 (UTC) Received: from mail-oa0-x241.google.com (mail-oa0-x241.google.com [IPv6:2607:f8b0:4003:c02::241]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9C34E2988 for ; Tue, 17 Jun 2014 17:51:49 +0000 (UTC) Received: by mail-oa0-f65.google.com with SMTP id i7so2542215oag.8 for ; Tue, 17 Jun 2014 10:51:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=jmC0UwRaEYTs/4IAI3uhHqRv8k00jZ0gIlJwn5Ya6hk=; b=x+5NIhyiWPXjKfRbm6z0VICi2Mz/n9JyeLF6ddyNlMEeV4dVZVwqUFqBRZktz2bmdb GNefaiQjRyRlqcNThQ1DNzOZhPMQgWjBskufzJ0W5Uwtpk2CYPmh4F3H4G8+8JPSjkNb /xuxV4eyTO5GxqjtnWlylJsgjPf0iorpIxXYmToiJDYAXf5NJUq6StMPi/cXAojy4Uyj DoGHx61dZSYqWXhJT9AgKqPmxF2qRaXRSWR1kJehSe1BDedOYdTdgVjaq3qU310t6LfR 9QfSW2hp5J1ndAc/JgIPhrdidpEaTDwwaebl8BddEmEp6fiWgrT/Ls1JJRjqsCvyZ4jn v3lg== MIME-Version: 1.0 X-Received: by 10.182.115.232 with SMTP id jr8mr28298359obb.35.1403027508878; Tue, 17 Jun 2014 10:51:48 -0700 (PDT) Received: by 10.76.152.161 with HTTP; Tue, 17 Jun 2014 10:51:48 -0700 (PDT) Date: Tue, 17 Jun 2014 19:51:48 +0200 Message-ID: Subject: Building a single module, MK_ARM_EABI From: Willy Marshall To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jun 2014 17:51:49 -0000 Hi, I'd like to rebuild a single kernel module after making slight tweeks to it. I've read from multiple sources that I should be able to do that by changing directory to /usr/src/sys/modules/ and using make. When I try that, make comes out with the error: make: "/usr/share/mk/bsd.own.mk" line 457: MK_ARM_EABI can't be set by a user. I've been trying the new approach to kernel building with success. I'm on amd64 and have no interrest in arm whatsoever. The error comes up with multiple (maybe all?) modules. I've tried creating an "/etc/src.conf" with WITHOUT_ARM_EABI=yes That didn't seem to change anything. Am I missing something? Thanks, Willy