#!/bin/bash # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). # You may not use this file except in compliance with the License. # A copy of the License is located at # # http://aws.amazon.com/apache2.0 # # or in the "license" file accompanying this file. This file is distributed # on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either # express or implied. See the License for the specific language governing # permissions and limitations under the License. # set -e usage() { echo "install_prlimit.sh download_dir install_dir" exit 1 } if [ "$#" -ne "2" ]; then usage fi BUILD_DIR=$1 INSTALL_DIR=$2 source codebuild/bin/jobs.sh sudo apt-get install -y libncurses5-dev cd "$BUILD_DIR" # Originally from: https://www.kernel.org/pub/linux/utils/util-linux/v2.25/util-linux-2.25.2.tar.gz curl --retry 3 https://s3-us-west-2.amazonaws.com/s2n-public-test-dependencies/2017-08-29_util-linux-2.25.2.tar.gz --output util-linux-2.25.2.tar.gz tar -xzvf util-linux-2.25.2.tar.gz cd util-linux-2.25.2 ./configure ADJTIME_PATH=/var/lib/hwclock/adjtime \ --disable-chfn-chsh \ --disable-login \ --disable-nologin \ --disable-su \ --disable-setpriv \ --disable-runuser \ --disable-pylibmount \ --disable-static \ --without-python \ --without-systemd \ --disable-makeinstall-chown \ --without-systemdsystemunitdir \ --without-ncurses \ --prefix="$INSTALL_DIR" || cat config.log make -j $JOBS > /dev/null make -j $JOBS install > /dev/null