forked from zhoulihuagithub/bootable-live-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
67 lines (49 loc) · 2.9 KB
/
readme.txt
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Document where to download the source file and how to compile binary:
busybox:
Source for the latest released version, as well as daily snapshots,
can always be downloaded from: https://busybox.net/downloads/
Compile steps : make defconfig / make menuconfig / make
BusyBox is extremely configurable. This allows you to include only the
components and options you need, thereby reducing binary size. Run 'make
config' or 'make menuconfig' to select the functionality that you wish to
enable. (See 'make help' for more commands.)
dmidecode:
Can always be downloaded or also get the latest sources using git:http://www.nongnu.org/dmidecode/
Compile steps : make
The home web page for dmidecode is hosted on Savannah: http://www.nongnu.org/dmidecode/
You will find the latest version (including CVS) there, as well as fresh news
and other interesting material, such as a list of related projects and articles.
There's no configure script, so simply run "make" to build dmidecode, and
"make install" to install it. You also can use "make uninstall" to remove
all the files you installed.
Run "make" on ubuntu, compilation defaults to link dynamic libraries,
so binary size is very small and can't run well on board.
We can modify makefile to 'LDFLAGS = -static' support static compilation.
mke2fs:
can always be downloaded or also get the latest sources using git: http://e2fsprogs.sourceforge.net/
Compile steps : ./configure / make
You can always find information about the latest version at the the e2fsprogs web page,
which is:http://e2fsprogs.sourceforge.net
Run "make" on ubuntu, compilation defaults to link dynamic libraries,
so binary size is very small and can't run well on board.
We can modify makefile to 'LDFLAGS = -static' support static compilation.
mkfs.fat:
Can get the latest sources using git: https://github.com/dosfstools/dosfstools
dosfstools are built using an autoconf/automake system, so the standard method applies:
Compile steps : ./autogen.sh / ./configure / make
Run "make" on ubuntu, compilation defaults to link dynamic libraries,
so binary size is very small and can't run well on board.
We can modify makefile to 'LDFLAGS = -static' support static compilation.
sgdisk:
Can get the latest sources using git: https://github.com/Shihta/gdisk
Compile steps : make
If you have following make error, you can fix this error by 'sudo apt-get install libncursesw5-dev' .
gptcurses.cc:25:10: fatal error: ncursesw/ncurses.h: No such file or directory
#include <ncursesw/ncurses.h>
^~~~~~~~~~~~~~~~~~~~
compilation terminated.
<builtin>: recipe for target 'gptcurses.o' failed
make: *** [gptcurses.o] Error 1
Run "make" on ubuntu, compilation defaults to link dynamic libraries,
so binary size is very small and can't run well on board.
We can modify makefile to 'LDFLAGS = -static' support static compilation.