Projecte

General

Perfil

Qmpfw » Historial » Versió 7

Pau Escrich, 07-10-2011 15:14

1 1 Pau Escrich
h1. Qmpfw
2
3
Qmpfw is a tool for developers to create a development enviroment for qMp.
4
5
Basically it consists in one Makefile, so it is called using `make` command.
6
7 6 Pau Escrich
h3. Download the code
8
Read Only URL:
9
10 7 Pau Escrich
    @http://qmp.cat/git/qmpfw.git@
11 6 Pau Escrich
12
Developer URL:
13
14 7 Pau Escrich
    @ssh://gitosis@qmp.cat:221/qmpfw.git@
15 6 Pau Escrich
16 2 Pau Escrich
h3. Directory structure
17
18 1 Pau Escrich
There are several directories. This is the functionallity for each of them:
19 5 Pau Escrich
20 1 Pau Escrich
* build: here you will have all needed sources 
21 5 Pau Escrich
22 1 Pau Escrich
** build/configs: if you do some change in config file using `menuconfig` option, the new config is placed here (and also in destination target)
23 5 Pau Escrich
24 1 Pau Escrich
* dl: download folder for OpenWRT packages
25 5 Pau Escrich
26 1 Pau Escrich
* configs: config files for each kind of hardware. These are the default ones provided by qmpfw
27
 
28 2 Pau Escrich
h3. Command options
29
30 1 Pau Escrich
To compile a qMp image from scratch, you need to specify the target (next example with target=rspro):
31
This command will run all necessary commands to compile the image. After the compilation you can see the OpenWRT code in directory: build/[target]
32 4 Pau Escrich
* make T=rspro build
33 3 Pau Escrich
34 1 Pau Escrich
Also you can specify the number of parallel processes for compilation and the verbose level:
35
* make V=99 J=2 T=rspro build
36
37
To see list of avaiable targets run:
38
* make list_targets
39
40
To update targets (this will update qmp and eigennet feeds, not openwrt source):
41
42 4 Pau Escrich
43 1 Pau Escrich
This will update all targets
44 4 Pau Escrich
* make update 
45 3 Pau Escrich
46
This will update only rspro target
47 4 Pau Escrich
* make T=rspro update
48 1 Pau Escrich
49
To run menuconfig (from openwrt):
50
* make T=rspro menuconfig
51 4 Pau Escrich
52 1 Pau Escrich
After that, the new config file will be applied to destination target and also it will by copied inside build/configs directory
53
54
To run kernel menuconfig (from openwrt):
55
* make T=rspro kernel_menuconfig
56 4 Pau Escrich
57 1 Pau Escrich
TODO: copy kernel config file in build/configs directory
58
59
To clean specific target:
60
* make T=rspro clean
61
62
To clean all targets:
63
* make clean
64
65
To configure some general parameters from qMp you can run:
66
* make config
67 4 Pau Escrich
68 1 Pau Escrich
TODO: This feature is missing
69
70