From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from todd.t-8ch.de (todd.t-8ch.de [159.69.126.157]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1615645A2AE for ; Fri, 14 Aug 2026 10:15:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=159.69.126.157 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786702508; cv=none; b=flQ0HcmHuxzboICYNknYSVHLg18sPIOlXio5N+Sva8p6N7EFgAvGkQrOsajgC8xo3I2975T5FlwJ0zCbKFoApRAmsP5DmfC92sYotiJevqaBaManW2/ZBafzE5FOCNWvm2IIJXCR25K3S3nzy+1ZNUSld3MLL6HVPE7FX3g6wfQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786702508; c=relaxed/simple; bh=jjF0Ta3xkdrHRVISFH9+/tGO50neJVRLWU3RLaZqY8Q=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=nOUzLUkGhAMOIYzjryhVkSVp+EgYWton/KSeileuY0/ONqnp9WOCWaGWrXtQUeMYpFkAPvZG/6V7RTQGEc7L2w3Iyqrmh9GHg8CiCJKYAV/pUVar+wi73DZGn62HLTbiT4r9jPV3Dykoi3wLUlRZ3cIcv2WeC7KkgTZKEPULy5c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=weissschuh.net; spf=pass smtp.mailfrom=weissschuh.net; dkim=pass (1024-bit key) header.d=weissschuh.net header.i=@weissschuh.net header.b=j7Jd+2q+; arc=none smtp.client-ip=159.69.126.157 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=weissschuh.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=weissschuh.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=weissschuh.net header.i=@weissschuh.net header.b="j7Jd+2q+" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=weissschuh.net; s=mail; t=1786702493; bh=jjF0Ta3xkdrHRVISFH9+/tGO50neJVRLWU3RLaZqY8Q=; h=Date:From:To:Cc:Subject:From; b=j7Jd+2q+XSCdytdtBCf+zGYmwcxcIubCKjV+M4XEkTAaBwjEfSSIDylcI3t/MkeMo 2de1wMrl5fc1lQ0lmUb61dbVP4st0VhWqcZFmBJQjN/ELRMaY+5YqYvbDzAb6Vzf06 u/CigafhE0IhmIizyk+AGFdt6w1p7ehhBcE8v/pg= Date: Fri, 14 Aug 2026 12:14:52 +0200 From: Thomas =?utf-8?Q?Wei=C3=9Fschuh?= To: Linus Torvalds Cc: Willy Tarreau , linux-kernel@vger.kernel.org Subject: [GIT PULL] nolibc changes for v7.3 Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit Hi Linus, The following changes since commit dc59e4fea9d83f03bad6bddf3fa2e52491777482: Linux 7.2-rc1 (2026-06-28 12:01:31 -0700) are available in the Git repository at: ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/nolibc/linux-nolibc.git/ tags/nolibc-20260814-for-7.3-1 for you to fetch changes up to b58afc8d1cf85688601b8d7e271125fff666f661: tools/nolibc: add support for Alpha (2026-08-02 09:30:55 +0200) ---------------------------------------------------------------- nolibc changes for v7.3 Highlights: * New architectures: Alpha * New library functionality: readlink(), getcwd() * Various bugfixes and cleanups ---------------------------------------------------------------- Ammar Faizi (1): tools/nolibc: remove dead __ARCH_WANT_SYS_OLD_SELECT Daniel Palmer (3): tools/nolibc: unistd: Add getcwd() tools/nolibc: unistd: Add readlink() selftests/nolibc: Add test for getcwd() and readlink() Thomas Weißschuh (4): tools/nolibc: mark arg1 operand in __nolibc_syscall0() as write-only selftests/nolibc: add debug information tools/nolibc/powerpc: mark ctr and xer as clobbered by system call tools/nolibc: add support for Alpha tools/include/nolibc/Makefile | 2 +- tools/include/nolibc/arch-alpha.h | 159 ++++++++++++++++++++++++ tools/include/nolibc/arch-arm.h | 3 - tools/include/nolibc/arch-powerpc.h | 2 +- tools/include/nolibc/arch-sparc.h | 2 +- tools/include/nolibc/arch-x86.h | 3 - tools/include/nolibc/arch.h | 2 + tools/include/nolibc/unistd.h | 58 +++++++++ tools/testing/selftests/nolibc/Makefile.include | 2 +- tools/testing/selftests/nolibc/Makefile.nolibc | 2 + tools/testing/selftests/nolibc/nolibc-test.c | 57 +++++++++ tools/testing/selftests/nolibc/run-tests.sh | 3 +- 12 files changed, 284 insertions(+), 11 deletions(-) create mode 100644 tools/include/nolibc/arch-alpha.h