-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
25 lines (16 loc) · 726 Bytes
/
README
File metadata and controls
25 lines (16 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# u-boot compiler for BlueOcean devices, forked off u-boot-sunxi
#
# Created by Kousha Talebian on 06/03/15
#
#
## How to Compile
To compile, generate the `config.h` and then `make` the `.bin` file.
_Note_: The `config.h` file has already been created. Unless you know what you are doing, please skip this step.
To generate `config.h`, run
# <BOARD_CONFIG> is the name of the board you are compiling u-boot
# BlueOcean is a fork of Cubietruck, so in this case, this would be 'Cubietruck_config'
make CROSS_COMPILE=arm-linux-gnueabihf- <BOARD_NAME>_config
This generates `include\config.h` and includes all the necessary header files.
To generate `.bin` image, run
make CROSS_COMPILE=arm-linux-gnueabihf- -j4