Message ID | 20240705162248.24954-1-binutils@emagii.com |
---|---|
Headers |
Return-Path: <binutils-bounces~patchwork=sourceware.org@sourceware.org> X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 40CCF3888839 for <patchwork@sourceware.org>; Fri, 5 Jul 2024 16:23:26 +0000 (GMT) X-Original-To: binutils@sourceware.org Delivered-To: binutils@sourceware.org Received: from morgoth (host183-192-94.customer.mediateknik.net [193.183.192.94]) by sourceware.org (Postfix) with ESMTP id 62D1A383237C for <binutils@sourceware.org>; Fri, 5 Jul 2024 16:22:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 62D1A383237C Authentication-Results: sourceware.org; dmarc=fail (p=none dis=none) header.from=emagii.com Authentication-Results: sourceware.org; spf=none smtp.mailfrom=morgoth ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 62D1A383237C Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=193.183.192.94 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1720196574; cv=none; b=N1YDgqyURm2qXvJdjeSvPiDZTrHS0iQkC6xQsgPAE9qFugMOKDkNT2L0d8hTaQ/Xtt3UB3xF9TjLhv5N6y1tmqkyVVOXqrK79/RwAnbwppvf/2yUzy5wAKlJvJydcr33nD+NHfkH8CHlQNESZFEiK14dJwq+dXTzBNtBU25fnug= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1720196574; c=relaxed/simple; bh=wCDMQDC7yzNvwYXwTFlMPryfO06xMBKB2qrTMO3Pe4E=; h=From:To:Subject:Date:Message-Id; b=q1wgEEoth3HV89oGZvPa3JTYacIZvOYFBIFoez4eg2652vIPQ2UoxLIE4Kgc/qQgQ1BVJZu6VLJ4Hb7YurF6lZZ0VuK11oFqzRoMmvo+Y1XU+K2GjPooRWpf6sMXhRgIFzh3iGYc8l8qsXWZuwMZ9E6W3kw6PsQzQFZ5xSYuTkM= ARC-Authentication-Results: i=1; server2.sourceware.org Received: by morgoth (Postfix, from userid 1000) id E8151340BE8; Fri, 5 Jul 2024 18:22:50 +0200 (CEST) From: binutils@emagii.com To: binutils@sourceware.org Cc: nickc@redhat.com Subject: [PATCH v2 0/7] ASCII output section command Date: Fri, 5 Jul 2024 18:22:41 +0200 Message-Id: <20240705162248.24954-1-binutils@emagii.com> X-Mailer: git-send-email 2.17.1 X-Spam-Status: No, score=-5.7 required=5.0 tests=BAYES_00, FSL_HELO_NON_FQDN_1, HEADER_FROM_DIFFERENT_DOMAINS, HELO_NO_DOMAIN, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, KHOP_HELO_FCRDNS, SPF_NONE, TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Binutils mailing list <binutils.sourceware.org> List-Unsubscribe: <https://sourceware.org/mailman/options/binutils>, <mailto:binutils-request@sourceware.org?subject=unsubscribe> List-Archive: <https://sourceware.org/pipermail/binutils/> List-Post: <mailto:binutils@sourceware.org> List-Help: <mailto:binutils-request@sourceware.org?subject=help> List-Subscribe: <https://sourceware.org/mailman/listinfo/binutils>, <mailto:binutils-request@sourceware.org?subject=subscribe> Errors-To: binutils-bounces~patchwork=sourceware.org@sourceware.org |
Series |
ASCII output section command
|
|
Message
Ulf Samuelsson
July 5, 2024, 4:22 p.m. UTC
Implement the ASCII command for output sections Introduce a command which adds a fixed size string. ASCII <size> ',' <string> Size specified in command. If the string is shorter than the allocated area, it is zero filled If the string is longer than the allocated area, it is truncated and a NUL character is added at the end. Note: Will be merged into fewer patches after acceptance in final version [PATCH v2 1/7] ldlex.l: Add ASCII token [PATCH v2 2/7] ldgram.y: Add ASCII parsing [PATCH v2 3/7] ldlang.*: process ASCII command [PATCH v2 4/7] ld.texi: Add ASCII to info file [PATCH v2 5/7] Add testsuite for ASCII command [PATCH v2 6/7] NEWS: Add ASCII command [PATCH v2 7/7] ChangeLog: Add ASCII command