Changes between Version 31 and Version 32 of OpenWrt/building


Ignore:
Timestamp:
02/10/2023 05:36:57 PM (21 months ago)
Author:
Ryan Erbstoesser
Comment:

add some newport stuff

Legend:

Unmodified
Added
Removed
Modified
  • OpenWrt/building

    v31 v32  
    124124
    125125
    126 == Building Pre-requisites ==
     126== Building Pre-Requisites ==
    127127
    128128These instructions require having a desktop or laptop computer with Ubuntu installed to compile Gateworks OpenWrt.
     
    165165To support OpenWrt for the Gateworks products, we maintain a patchset that is generic to all our standard product families.
    166166
    167 The below instructions are primarily for Ventana and Laguna.
    168 
    169 *** Note, for all Newport related building, please follow these instructions: [wiki:newport/bsp#BuildingtheBSPfromsource Newport OpenWrt BSP Instructions]
     167The below instructions are primarily for Newport and Ventana and Laguna.
    170168
    171169
     
    196194   - In menuconfig:
    197195    - Target system:
     196     - Newport: Marvell OcteonTX
    198197     - Ventana: Freescale i.MX6
    199198     - Laguna: Cavium Networks Econa CNS3xxx
     
    211210 * Once the branch has been checked out from the ​Gateworks GitHub account, you are ready to build. The Gateworks Makefile provides the following targets:
    212211  - all : Built imx6 and cns3xxx targets.
     212  - octeontx : build BSP for the octeontx target (Newport product family)
    213213  - imx6 : build BSP for the imx6 target (Ventana product family)
    214214  - cns3xxx : build BSP for the cns3xxx target (Laguna product family)
    215215  - images : build binary flash images (suitable for JTAG flashing) for supported product families (Ventana / Laguna).
    216216  - dirclean : remove all downloaded and built directories
     217  - In order to build the octeontx target for the Newport product family, the following steps would occur:
     218{{{#!bash
     219# Build the octeontx target, using the configuration from gateworks/configs/octeontx/.config.
     220# This will take a while
     221make -C gateworks/ octeontx
     222}}}
    217223  - In order to build the imx6 target for the Ventana product family, the following steps would occur:
    218224{{{#!bash