build.txt 1.84 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
======== How to build ash/hexdump/xzcat for aarch64 ======== 
#How to get ash.config/hexdump.cofig/xzcat.config
#ARCH=arm64 CROSS_COMPILE=aarch64-linux- make allnoconfig
#ARCH=arm64 CROSS_COMPILE=aarch64-linux- make menuconfig 
#----> enable static build
#----> enable xzcat
#get aarch64_xzcat.config

tar xf busybox-1.32.0.tar.bz2
cd busybox-1.32.0
copy aarch64_xzcat.config as .config
longpanda's avatar
longpanda committed
12
ARCH=arm64 CROSS_COMPILE=aarch64-linux- make 
13
rename ./busybox to xzcat
longpanda's avatar
longpanda committed
14
15


16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
======== How to build ash/hexdump/xzcat for mips64el ======== 
#download mips64el-musl cross toolchain from https://github.com/ventoy/musl-cross-make/releases/download/latest/
#How to get ash.config/hexdump.cofig/xzcat.config
#ARCH=mips CROSS_COMPILE=mips64el-linux-musl- make allnoconfig "CFLAGS+=-mips64r2 -mabi=64 -Os" "LDFLAGS+=-mips64r2 -mabi=64 -Os"
#ARCH=mips CROSS_COMPILE=mips64el-linux-musl- make menuconfig  "CFLAGS+=-mips64r2 -mabi=64 -Os" "LDFLAGS+=-mips64r2 -mabi=64 -Os"
#----> enable static build
#----> enable xzcat
#get mips64el_xzcat.config

tar xf busybox-1.32.0.tar.bz2
cd busybox-1.32.0
copy mips64el_xzcat.config as .config
ARCH=mips CROSS_COMPILE=mips64el-linux-musl- make "CFLAGS+=-mips64r2 -mabi=64 -Os" "LDFLAGS+=-mips64r2 -mabi=64 -Os"
rename ./busybox to xzcat


======== How to build full busybox =========
#make defconfig
#make menuconfig  select static build
longpanda's avatar
longpanda committed
35

36
37
38
39
40
41
42
======== How to build ash/hexdump/xzcat for x86_64 ==========
#How to get ash.config/hexdump.cofig/xzcat.config
#make allnoconfig
#make menuconfig 
#----> enable static build
#----> enable xzcat
#get x86_64_xzcat.config
longpanda's avatar
longpanda committed
43
44


45
46
47
48
49
50
51
52
tar xf busybox-1.32.0.tar.bz2
cd busybox-1.32.0
copy x86_64_xzcat.config as .config
modify Makefile
CC		= gcc -specs "/usr/local/musl/lib/musl-gcc.specs"
MODFLAGS	= -DMODULE -specs "/usr/local/musl/lib/musl-gcc.specs"
make
rename ./busybox to xzcat
longpanda's avatar
longpanda committed
53
54
55