From owner-freebsd-current@freebsd.org Mon Jan 11 15:41:24 2021 Return-Path: Delivered-To: freebsd-current@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 84FE54DD55B for ; Mon, 11 Jan 2021 15:41:24 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 4DDyc43HJfz3vbR for ; Mon, 11 Jan 2021 15:41:24 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 70A544DD55A; Mon, 11 Jan 2021 15:41:24 +0000 (UTC) Delivered-To: current@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 706D84DD559 for ; Mon, 11 Jan 2021 15:41:24 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DDyc42nRmz3vv1; Mon, 11 Jan 2021 15:41:24 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qv1-f53.google.com (mail-qv1-f53.google.com [209.85.219.53]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id 4DEC126BD; Mon, 11 Jan 2021 15:41:24 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qv1-f53.google.com with SMTP id s6so7569799qvn.6; Mon, 11 Jan 2021 07:41:24 -0800 (PST) X-Gm-Message-State: AOAM533l9TXSTlFNMiOPUFgjV+V/GDAX1AVtjidrc9RtaZ//Mk5porjZ KBf4wfpiZIdJj90JyC9w4+RuXBbmAGnU4giKgqM= X-Google-Smtp-Source: ABdhPJxKcZTSkJJtX8ukJiU2WqOoZXYfTHXWyJB5FOPZavN2XT0g5geupDsyq9Akodr6dVo4dDg1Llu5cYx4dqtSnB0= X-Received: by 2002:a0c:b59a:: with SMTP id g26mr240811qve.26.1610379683851; Mon, 11 Jan 2021 07:41:23 -0800 (PST) MIME-Version: 1.0 References: <1827645385.154500.1610202838480.ref@mail.yahoo.com> <1827645385.154500.1610202838480@mail.yahoo.com> In-Reply-To: <1827645385.154500.1610202838480@mail.yahoo.com> From: Kyle Evans Date: Mon, 11 Jan 2021 09:41:11 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: Problem compiling custom kernel To: Filippo Moretti Cc: FreeBSD Current , Vladimir Kondratyev Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jan 2021 15:41:24 -0000 On Sat, Jan 9, 2021 at 8:34 AM Filippo Moretti wrote: > > I tried to compile my custom kernel but I did get the following error,I enclose the beginning of dmesg output.So far I could always build kernel STING.I did switch to git and previously I could build it without issues.sincerelyFilippo > > [... snip ...]] > > --- kernel.full ---linking kernel.full > ld: error: undefined symbol: hid_is_keyboard > >>> referenced by ukbd.c:957 (/usr/src/sys/dev/usb/input/ukbd.c:957) > >>> ukbd.o:(ukbd_probe) > ld: error: undefined symbol: hid_is_mouse > >>> referenced by ukbd.c:958 (/usr/src/sys/dev/usb/input/ukbd.c:958) > >>> ukbd.o:(ukbd_probe) > ... Hi, ukbd recently grew a dependency on the newly split uhid module. See the 20210107 UPDATING entry for resolution. Thanks, Kyle Evans