File tree 3 files changed +21
-2
lines changed
3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Use ". android_config.sh" to refresh prebuilt android config
2
+ # Note: this rebuild the compressed usage ressources and should be done
3
+ # in a separate commit, to ignore it on future merge/rebase
4
+
5
+ make mrproper
6
+
7
+ cp .config-minimal .config
8
+ echo >> .config
9
+ echo ' CONFIG_CROSS_COMPILER_PREFIX="arm-eabi-"' >> .config
10
+ make prepare
11
+ cd include-minimal && ./copy-current.sh
12
+ cd ..
13
+
14
+ cp .config-full .config
15
+ echo >> .config
16
+ echo ' CONFIG_CROSS_COMPILER_PREFIX="arm-eabi-"' >> .config
17
+ make prepare
18
+ cd include-full && ./copy-current.sh
19
+ cd ..
Original file line number Diff line number Diff line change 2
2
# this step is no more required to build busybox, it is made automatically
3
3
# in Android.mk (busybox_prepare module)
4
4
5
- cp ../.config ../.config-full
5
+ cat ../.config | grep -v CONFIG_CROSS_COMPILER_PREFIX > ../.config-full
6
6
7
7
cp ../include/applets.h ./
8
8
cp ../include/applet_tables.h ./
Original file line number Diff line number Diff line change 2
2
# this step is no more required to build busybox, it is made automatically
3
3
# in Android.mk (busybox_prepare module)
4
4
5
- cp ../.config ../.config-minimal
5
+ cat ../.config | grep -v CONFIG_CROSS_COMPILER_PREFIX > ../.config-minimal
6
6
7
7
cp ../include/applets.h ./
8
8
cp ../include/applet_tables.h ./
You can’t perform that action at this time.
0 commit comments