The libfreetype6-dev has been a transitional package pointing at libfreetype-dev for a while now. The libfreetype6-dev package is currently out of date in debian sid, so it's a good time to switch away from it. TEST=Rebuild coreboot-sdk Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: If40e9eacf871d3840745ea18ec2ff5975cc62da7 Reviewed-on: https://review.coreboot.org/c/coreboot/+/77328 Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
		
			
				
	
	
		
			120 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # This dockerfile is not meant to be used directly by docker.  The
 | |
| # {{}} variables are replaced with values by the makefile.  Please generate
 | |
| # the docker image for this file by running:
 | |
| #
 | |
| #   make coreboot-sdk
 | |
| #
 | |
| # Variables can be updated on the make command line or left blank to use
 | |
| # the default values set by the makefile.
 | |
| #
 | |
| #  SDK_VERSION is used to name the version of the coreboot sdk to use.
 | |
| #              Typically, this corresponds to the toolchain version.  This
 | |
| #              is used to identify this docker image.
 | |
| #  DOCKER_COMMIT is the coreboot Commit-ID to build the toolchain from.
 | |
| 
 | |
| FROM debian:sid AS coreboot-sdk
 | |
| 
 | |
| RUN \
 | |
| 	useradd -p locked -m coreboot && \
 | |
| 	apt-get -qq update && \
 | |
| 	apt-get -qqy install --no-install-recommends \
 | |
| 		bc \
 | |
| 		bison \
 | |
| 		bsdextrautils \
 | |
| 		bzip2 \
 | |
| 		ca-certificates \
 | |
| 		ccache \
 | |
| 		cmake \
 | |
| 		cscope \
 | |
| 		curl \
 | |
| 		device-tree-compiler \
 | |
| 		dh-autoreconf \
 | |
| 		diffutils \
 | |
| 		exuberant-ctags \
 | |
| 		flex \
 | |
| 		g++ \
 | |
| 		gawk \
 | |
| 		gcc \
 | |
| 		git \
 | |
| 		gnat-13 \
 | |
| 		golang \
 | |
| 		graphicsmagick-imagemagick-compat \
 | |
| 		graphviz \
 | |
| 		lcov \
 | |
| 		less \
 | |
| 		libcrypto++-dev \
 | |
| 		libcurl4 \
 | |
| 		libcurl4-openssl-dev \
 | |
| 		libelf-dev \
 | |
| 		libfreetype-dev \
 | |
| 		libftdi1-dev \
 | |
| 		libglib2.0-dev \
 | |
| 		libgmp-dev \
 | |
| 		libgpiod-dev \
 | |
| 		libjaylink-dev \
 | |
| 		liblzma-dev \
 | |
| 		libncurses-dev \
 | |
| 		libpci-dev \
 | |
| 		libreadline-dev \
 | |
| 		libssl-dev \
 | |
| 		libusb-1.0-0-dev \
 | |
| 		libxml2-dev \
 | |
| 		libyaml-dev \
 | |
| 		m4 \
 | |
| 		make \
 | |
| 		msitools \
 | |
| 		nasm \
 | |
| 		neovim \
 | |
| 		openssh-client \
 | |
| 		openssl \
 | |
| 		parted \
 | |
| 		patch \
 | |
| 		pbzip2 \
 | |
| 		pkg-config \
 | |
| 		python3 \
 | |
| 		python-is-python3 \
 | |
| 		qemu-system-arm \
 | |
| 		qemu-system-misc \
 | |
| 		qemu-system-ppc \
 | |
| 		qemu-system-x86 \
 | |
| 		rsync \
 | |
| 		sharutils \
 | |
| 		shellcheck \
 | |
| 		unifont \
 | |
| 		unzip \
 | |
| 		uuid-dev \
 | |
| 		vim-common \
 | |
| 		wget \
 | |
| 		xz-utils \
 | |
| 		zlib1g-dev \
 | |
| 	&& apt-get clean
 | |
| 
 | |
| RUN \
 | |
| 	cd /tmp && \
 | |
| 	git clone https://review.coreboot.org/coreboot && \
 | |
| 	cd coreboot && \
 | |
| 	git checkout {{DOCKER_COMMIT}}; \
 | |
| 	if echo {{CROSSGCC_PARAM}} | grep -q ^all; then \
 | |
| 		make -C /tmp/coreboot/util/crossgcc/ build_clang \
 | |
| 			BUILD_LANGUAGES=c,ada CPUS=$(nproc) DEST=/opt/xgcc; \
 | |
| 	fi; \
 | |
| 	make -C /tmp/coreboot/util/crossgcc/ {{CROSSGCC_PARAM}} \
 | |
| 		BUILD_LANGUAGES=c,ada CPUS=$(nproc) DEST=/opt/xgcc && \
 | |
| 	rm -rf /tmp/coreboot
 | |
| 
 | |
| RUN mkdir /home/coreboot/.ccache && \
 | |
| 	chown coreboot:coreboot /home/coreboot/.ccache && \
 | |
| 	mkdir /home/coreboot/cb_build && \
 | |
| 	chown coreboot:coreboot /home/coreboot/cb_build && \
 | |
| 	echo "export PATH=$PATH:/opt/xgcc/bin" >> /home/coreboot/.bashrc && \
 | |
| 	echo "export SDK_VERSION={{SDK_VERSION}}" >> /home/coreboot/.bashrc && \
 | |
| 	echo "export SDK_COMMIT={{DOCKER_COMMIT}}" >> /home/coreboot/.bashrc
 | |
| 
 | |
| ENV PATH $PATH:/opt/xgcc/bin
 | |
| ENV SDK_VERSION={{SDK_VERSION}}
 | |
| ENV SDK_COMMIT={{DOCKER_COMMIT}}
 | |
| USER coreboot
 | |
| 
 | |
| FROM coreboot-sdk
 | |
| VOLUME /home/coreboot/.ccache
 |