diff options
author | Leah Rowe <leah@libreboot.org> | 2023-05-14 10:33:35 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-05-14 10:33:35 +0100 |
commit | d90dfb0a08bcc82200227afd7ab3c0b2ab72a91e (patch) | |
tree | cd912b9561acf76ea8e75aae1bf00d6a2f4e25c0 /resources/scripts/build/dependencies/debian | |
parent | 48bda9e051746d2c1d71d661dd825b743b7b833e (diff) |
build/dependencies/*: RFC 2646 compliance
Diffstat (limited to 'resources/scripts/build/dependencies/debian')
-rwxr-xr-x | resources/scripts/build/dependencies/debian | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/resources/scripts/build/dependencies/debian b/resources/scripts/build/dependencies/debian index f2654497..fb0ae248 100755 --- a/resources/scripts/build/dependencies/debian +++ b/resources/scripts/build/dependencies/debian @@ -85,7 +85,8 @@ apt-get -y install python3-setuptools # Coreboot build dependencies (also requires build-essential and git) # ------------------------------------------------------------ -apt-get -y install libncurses5-dev doxygen iasl gdb flex bison build-essential git libssl-dev gnat python-is-python3 +apt-get -y install libncurses5-dev doxygen iasl gdb flex bison \ + build-essential git libssl-dev gnat python-is-python3 # For cross-compiling i686 target on x86_64 host. [ "${arch}" -eq 0 ] && apt-get -y install lib32ncurses5-dev @@ -93,14 +94,23 @@ apt-get -y install libncurses5-dev doxygen iasl gdb flex bison build-essential g # GRUB build dependencies (also requires build-essential, bison and flex) # ------------------------------------------------------------ -apt-get -y install fonts-unifont libopts25 libselinux1-dev autogen m4 autoconf help2man libopts25-dev libfont-freetype-perl automake autotools-dev build-essential bison flex libfuse-dev liblzma-dev gawk libdevmapper-dev libtool libfreetype6-dev gettext +apt-get -y install fonts-unifont libopts25 libselinux1-dev autogen \ + m4 autoconf help2man libopts25-dev libfont-freetype-perl \ + automake autotools-dev build-essential bison flex \ + libfuse-dev liblzma-dev gawk libdevmapper-dev libtool \ + libfreetype6-dev gettext apt-get -y install unifont # U-Boot build dependencies # ------------------------- -apt-get -y install bc bison build-essential device-tree-compiler efitools flex libfdt-dev liblz4-tool libgnutls28-dev libncurses-dev libpython3-dev libsdl2-dev libssl-dev lz4 lzma lzma-alone openssl pkg-config python3 python3-distutils python3-pkg-resources python3-pycryptodome python3-pyelftools swig uuid-dev +apt-get -y install bc bison build-essential device-tree-compiler efitools \ + flex libfdt-dev liblz4-tool libgnutls28-dev libncurses-dev \ + libpython3-dev libsdl2-dev libssl-dev lz4 lzma lzma-alone \ + openssl pkg-config python3 python3-distutils \ + python3-pkg-resources python3-pycryptodome \ + python3-pyelftools swig uuid-dev # BucTS build dependencies (external script) # ------------------------------------------------------------ @@ -110,7 +120,9 @@ apt-get -y install build-essential # Flashrom build dependencies (also requires build-essential) # ------------------------------------------------------------ -apt-get -y install libpci-dev pciutils zlib1g-dev libftdi-dev build-essential libusb-1.0-0-dev libusb-1.0 libusb-1.0-0-dev libusb-dev +apt-get -y install libpci-dev pciutils zlib1g-dev libftdi-dev \ + build-essential libusb-1.0-0-dev libusb-1.0 \ + libusb-1.0-0-dev libusb-dev # For cross-compiling i686 target on x86_64 host. [ "${arch}" -eq 0 ] && apt-get -y install lib32z1-dev |