Skip to content
Snippets Groups Projects
Select Git revision
  • 89dc6b203d4d4facd743b1b3f24a5c892bc67499
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
41 results

ar71xx-generic

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    • David Bauer's avatar
      177ff68c
      ar71xx-generic: only create manifest alias for Rocket M5 (#2127) · 177ff68c
      David Bauer authored
      * ar71xx-generic: only create manifest alias for Rocket M5
      
      This follow up the discussion done in #2070 by not  creating a symlink
      for the Rocket M5. Images for the Rocket M2 can still be flashed on a
      Rocket M5.
      
      This change will prevent the Rocket M5 from appearing in Firmware
      selectors. Existing devices will still receive updates, as the device
      name is still referenced for the device name expected by the M5.
      
      Closes #2070
      
      * docs: remove Rocket M5 from supported devices
      ar71xx-generic: only create manifest alias for Rocket M5 (#2127)
      David Bauer authored
      * ar71xx-generic: only create manifest alias for Rocket M5
      
      This follow up the discussion done in #2070 by not  creating a symlink
      for the Rocket M5. Images for the Rocket M2 can still be flashed on a
      Rocket M5.
      
      This change will prevent the Rocket M5 from appearing in Firmware
      selectors. Existing devices will still receive updates, as the device
      name is still referenced for the device name expected by the M5.
      
      Closes #2070
      
      * docs: remove Rocket M5 from supported devices
    Dockerfile 875 B
    FROM gluonmesh/build:latest
    
    USER root
    
    # this is needed to install default-jre-headless in debian slim images
    RUN mkdir -p /usr/share/man/man1
     
    RUN apt-get update && apt-get install -y default-jre-headless curl python3 python3-pip python3-sphinx git
    RUN pip3 install jenkins-webapi sphinx_rtd_theme
     
    # Get docker-compose in the agent container
    RUN mkdir -p /home/jenkins
    RUN mkdir -p /var/lib/jenkins
    RUN mkdir -p /remoting
    RUN chown gluon /home/jenkins
    RUN chown gluon /var/lib/jenkins
    RUN chown gluon /remoting
     
    # Start-up script to attach the slave to the master
    ADD slave.py /var/lib/jenkins/slave.py
    
    USER gluon
     
    WORKDIR /home/jenkins
    
    ENV JENKINS_URL "https://build.ffh.zone/"
    ENV JENKINS_SLAVE_ADDRESS ""
    ENV SLAVE_EXECUTORS "1"
    ENV SLAVE_LABELS "docker"
    ENV SLAVE_WORING_DIR ""
    ENV CLEAN_WORKING_DIR "true"
     
    CMD [ "python3", "-u", "/var/lib/jenkins/slave.py" ]