Received: from mail-lj1-f172.google.com (mail-lj1-f172.google.com [209.85.208.172]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 082E278187F for <~alpine/apk-tools@lists.alpinelinux.org>; Wed, 19 Feb 2020 08:25:24 +0000 (UTC) Received: by mail-lj1-f172.google.com with SMTP id e18so26015297ljn.12 for <~alpine/apk-tools@lists.alpinelinux.org>; Wed, 19 Feb 2020 00:25:24 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=XoF65qIDFvx/FbdTnm9VL5ORLdS9Nrl9ScT4pni48nU=; b=FhTmlZMXdryxkZA9GsnkxApg2oHUMYaKfdJzSVqtWcPZ8XNPiIkfLs7BbQX/tQtTJZ VNfMayXKIEqTIrTxibvHCxg3Z6GoIIb4ilxtxgmMGedo9UArY980y5EBEOXOsIHJORe8 mCyOWtI/uELL3u/qGSPhhILY0z5h81b1pdulYhznCWvrcM5IMutqBo8rHyy3EDq5wbRb Y3b4QJveMWsO9o9SqBMmaGkFKbTA7N0n1ivduw9WC1n2iIFLnpCKMeUyucSvAM44OMrb SYdK/6QV6mjsBbEc8g3OAV3TFqf8JoZmWCUVfLqFZudmi0p2PsTxcLrmtL3aFMLMex79 nYBA== X-Gm-Message-State: APjAAAWdJo0j3BGZhaC1mJbdtQclbN4rRDzL/rsxyp7duADeKiXVDq2f fgXUwYNP8NkEo+t7B+Jrx9E= X-Google-Smtp-Source: APXvYqxyySzyt1Ckw2m6pOH4HNt0xSu8Gt3O2NWhOwCLjbRXORP2ZUgWNGbXoChT6ZJmPZW0Q2sXAw== X-Received: by 2002:a2e:9a51:: with SMTP id k17mr14383946ljj.206.1582100723142; Wed, 19 Feb 2020 00:25:23 -0800 (PST) Received: from vostro.wlan (dtc5qkyyyyyyyyyyyyx9y-3.rev.dnainternet.fi. [2001:14ba:80b2:d400::4fa]) by smtp.gmail.com with ESMTPSA id g27sm726703lfh.57.2020.02.19.00.25.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 19 Feb 2020 00:25:22 -0800 (PST) Date: Wed, 19 Feb 2020 10:25:19 +0200 From: Timo Teras To: Carl Chave Cc: ~alpine/apk-tools@lists.alpinelinux.org Subject: Re: APK Package Name Issue on armel port Message-ID: <20200219102519.052724f1@vostro.wlan> In-Reply-To: References: <20200214105215.6873e402@vostro.wlan> <62f21c96-ff43-83e4-5b7f-2e65e6d72729@adelielinux.org> <20200217111200.08405b9c@vostro.wlan> <20200217123334.031047d1@vostro.wlan> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-alpine-linux-musl) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi, On Tue, 18 Feb 2020 18:47:21 -0500 Carl Chave wrote: > > Timo, I think you nailed it! Seems to be working. I will recreate > > the root filesystem with the patched apk-tools and follow your > > advice about using: > > echo 4 > /proc/cpu/alignment > > Hi Timo, I did some more testing tonight with the patched apk-tools > and while things have improved, there still appears to be some issues > lurking: > > localhost:~# echo 4 > /proc/cpu/alignment > > localhost:~# cat /proc/cpu/alignment > User: 259 > System: 0 (0x0) > Skipped: 0 > Half: 0 > Word: 0 > DWord: 0 > Multi: 0 > User faults: 4 (signal) > > localhost:~# apk list > Bus error Now you have signal sent to the process. Could you use gdb to get a backtrace? That would help identify where the problem is. Thanks