File: pcduino3.py

package info (click to toggle)
freedom-maker 0.35
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 408 kB
  • sloc: python: 2,200; xml: 357; makefile: 10
file content (14 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Worker class to build LinkSprite pcDuino3 image.
"""

from .a20 import A20ImageBuilder


class PCDuino3ImageBuilder(A20ImageBuilder):
    """Image builder for PCDuino3 target."""
    machine = 'pcduino3'
    flash_kernel_name = 'LinkSprite pcDuino3'
    u_boot_path = \
        'usr/lib/u-boot/Linksprite_pcDuino3/u-boot-sunxi-with-spl.bin'