• Skip to sidebar navigation
  • Skip to content

Bitbucket

  • More
    ProjectsRepositories
  • Help
    • Online help
    • Learn Git
    • Welcome to Bitbucket
    • Keyboard shortcuts
  • Log In
Alexander Dahl
  1. Alexander Dahl

buildroot

Public
Actions
  • Clone
  • Compare

Learn more about cloning repositories

You have read-only access

Navigation
  • Source
  • Commits
  • Branches
  • All Branches Graph
  • Forks
  1. Alexander Dahl
  2. buildroot

Source

buildroot/board/grinn/liteboard/genimage.cfg
Marcin NiestrojMarcin Niestroj committed 4a21ba0b92103 Oct 2016
Raw file
Source viewDiff to previous
 
1
# Minimal microSD card image for Grinn's liteBoard
2
#
3
# We mimic the .sdcard Freescale's image format for i.MX6UL:
4
# * the microSD card must have 1 kB free space at the beginning,
5
# * SPL is dumped as is,
6
# * U-Boot is dumped at 69K offset, as configured in SPL
7
# * a FAT partition at offset 8 MB is containing zImage and dtbs,
8
# * a single root filesystem partition is required (Ext4 in this case).
9
#
10
​
11
image boot.vfat {
12
  vfat {
13
    files = {
14
      "imx6ul-liteboard.dtb",
15
      "zImage"
16
    }
17
  }
18
  size = 16M
19
}
20
​
21
image sdcard.img {
22
  hdimage {
23
  }
24
​
25
  partition SPL {
26
    in-partition-table = "no"
27
    image = "SPL"
28
    offset = 1K
29
  }
30
​
31
  partition u-boot {
32
    in-partition-table = "no"
33
    image = "u-boot.img"
34
    offset = 69K
35
  }
36
​
37
  partition boot {
38
    partition-type = 0xC
39
    bootable = "true"
40
    image = "boot.vfat"
41
    offset = 8M
42
  }
43
​
44
  partition rootfs {
45
    partition-type = 0x83
46
    image = "rootfs.ext4"
47
  }
48
}
  • Git repository management for enterprise teams powered by Atlassian Bitbucket
  • Atlassian Bitbucket v6.7.2
  • Documentation
  • Request a feature
  • About
  • Contact Atlassian
Atlassian

Everything looks good. We'll let you know here if there's anything you should know about.