From 23a3e3cebcfe2a242d673d9c278dee2aebc60575 Mon Sep 17 00:00:00 2001 From: Thomas Glanzmann Date: Fri, 20 Jan 2023 06:49:08 +0100 Subject: [PATCH] no longer necessary. Package made it upstream and is working --- README.md | 1 - libunwind.sh | 27 --------------------------- 2 files changed, 28 deletions(-) delete mode 100644 libunwind.sh diff --git a/README.md b/README.md index 1f69224..8c6d542 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,6 @@ using the following scripts: - m1n1_uboot_kernel.sh - Builds m1n1, u-boot and the kernel including gpu support. - mesa.sh - Creates mesa packages - bootstrap.sh - Creates Debian root and live filesystem - - libunwind.sh - Builds libunwind that does not crash on 16kb pages - meta.sh - Meta package which makes sure that we always get latest and gratest kernel. # Asahi installer diff --git a/libunwind.sh b/libunwind.sh deleted file mode 100644 index 8315e37..0000000 --- a/libunwind.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env bash - -set -o errexit -set -o nounset -set -o pipefail -set -o xtrace - -cd "$(dirname "$0")" - -unset LC_CTYPE -unset LANG - -main() { - mkdir -p build - cd build - dpkg -s devscripts >/dev/null 2>&1 || sudo apt-get install devscripts - rm -rf libunwind-1.6.2/ - apt-get source libunwind - cd libunwind-1.6.2/ - EMAIL=thomas@glanzmann.de dch 'Dynamic page size patch applied' - curl -sL https://tg.st/u/0001-libunwind-1.6.2-dynamic-page-size.patch > debian/patches/0001-libunwind-1.6.2-dynamic-page-size.patch - echo '0001-libunwind-1.6.2-dynamic-page-size.patch' >> debian/patches/series - sudo apt-get build-dep . - dpkg-buildpackage -uc -us -a arm64 -} - -main "$@" -- 2.39.2