From 5e69d89f7cccf997e62bdec56b97b868682ce76b Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 12 Mar 2021 10:27:21 +0000 Subject: [PATCH] formatting, remove proc/sys/dev mount in case its run as non-chroot --- nextpnr-ecp5-install | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/nextpnr-ecp5-install b/nextpnr-ecp5-install index ce99db7..8d8eddc 100755 --- a/nextpnr-ecp5-install +++ b/nextpnr-ecp5-install @@ -4,12 +4,11 @@ if [ "$EUID" -ne 0 ] exit fi -mount -t proc proc /proc -mount -t sysfs sysfs /sys -mount -t devpts -o rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 devpts /dev/pts - apt-get update -y -apt-get install -y python3 python3-dev clang cmake libboost-dev libboost-filesystem-dev libboost-thread-dev libboost-program-options-dev libboost-iostreams-dev openocd libeigen3-dev +apt-get install -y python3 python3-dev clang cmake libboost-dev \ + libboost-filesystem-dev libboost-thread-dev \ + libboost-program-options-dev libboost-iostreams-dev \ + openocd libeigen3-dev cd /home mkdir nextpnr @@ -26,11 +25,9 @@ make install cd ../.. cd nextpnr -cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nextpnr-ecp5 -DARCH=ecp5 -DTRELLIS_INSTALL_PREFIX=/usr/local/libtrellis . +cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nextpnr-ecp5 \ + -DARCH=ecp5 \ + -DTRELLIS_INSTALL_PREFIX=/usr/local/libtrellis . make make install -umount /dev/pts -umount /sys -umount /proc - -- 2.30.2