Skip to content
Snippets Groups Projects
Select Git revision
  • 1ace3d5bb0acb8c1f7f8261e4b877b2025d270d6
  • v2018.2.x default protected
  • 0x4A6F-rpi4
  • 0x4A6F-master
  • master
  • v2018.2.2-ffs
  • v2016.2.4-batmanbug
  • radv-filterd
  • v2016.2.x
  • hoodselector
  • v2016.1.x
  • babel
  • v2015.1.x
  • 2014.4.x
  • 2014.3.x
  • v2018.2.2-ffs0.1
  • v2018.2.1-ffs0.1
  • v2018.2.1
  • v2018.2-ffs0.1
  • v2018.2
  • v2018.1.4
  • v2018.1.3
  • v2018.1.2
  • v2018.1.1
  • v2018.1
  • v2017.1.8
  • v2017.1.7
  • v2017.1.6
  • v2017.1.5
  • v2017.1.4
  • v2017.1.3
  • v2017.1.2
  • v2016.2.7
  • v2017.1.1
  • v2017.1
35 results

0012-tools-mktplinkfw2-add-split-uboot-layout.patch

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    Dockerfile 907 B
    FROM debian:bookworm-slim
    
    ARG DEBIAN_FRONTEND=noninteractive
    RUN apt-get update && apt-get install -y --no-install-recommends \
        ca-certificates \
        file \
        git \
        python3 \
        python3-distutils \
        build-essential \
        gawk \
        unzip \
        libncurses5-dev \
        zlib1g-dev \
        libssl-dev \
        libelf-dev \
        wget \
        rsync \
        time \
        qemu-utils \
        ecdsautils \
        lua-check \
        shellcheck \
        libnss-unknown \
        && apt-get clean \
        && rm -rf /var/lib/apt/lists/*
    
    RUN mkdir /tmp/ec &&\
        wget -O /tmp/ec/ec-linux-amd64.tar.gz https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.7.0/ec-linux-amd64.tar.gz &&\
        tar -xvzf /tmp/ec/ec-linux-amd64.tar.gz &&\
        mv bin/ec-linux-amd64 /usr/local/bin/editorconfig-checker &&\
        rm -rf /tmp/ec
    
    RUN useradd -m -d /gluon -u 100 -g 100 -o gluon
    USER gluon
    
    VOLUME /gluon
    WORKDIR /gluon