diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-11-03 16:38:01 -0600 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-11-03 16:38:01 -0600 |
commit | e1b0fb60be211ab127a44db3efe060a4da6973b3 (patch) | |
tree | 5652250923b371988acfdf975087ac494477761a | |
parent | 7e2017cba16a4eab89b290388ab71ae0c3eed683 (diff) | |
download | busybox-w32-packaging-e1b0fb60be211ab127a44db3efe060a4da6973b3.tar.gz busybox-w32-packaging-e1b0fb60be211ab127a44db3efe060a4da6973b3.tar.bz2 busybox-w32-packaging-e1b0fb60be211ab127a44db3efe060a4da6973b3.zip |
add some more scripts to the tools
-rwxr-xr-x | init | 2 | ||||
-rwxr-xr-x | tools | 5 |
2 files changed, 5 insertions, 2 deletions
@@ -1,6 +1,6 @@ | |||
1 | #!/bin/sh -ex | 1 | #!/bin/sh -ex |
2 | 2 | ||
3 | tar -xvzf scripts.tar.xz . | 3 | tar -xvf scripts.tar.xz . |
4 | cd busybox-w32 | 4 | cd busybox-w32 |
5 | cp /root/busybox-w32-packaging/config .config | 5 | cp /root/busybox-w32-packaging/config .config |
6 | make | 6 | make |
@@ -10,6 +10,9 @@ make scripts/basic/docproc | |||
10 | make scripts/basic/fixdep | 10 | make scripts/basic/fixdep |
11 | make scripts/basic/split-include | 11 | make scripts/basic/split-include |
12 | make scripts/kconfig/conf | 12 | make scripts/kconfig/conf |
13 | make applets/applet_tables | ||
14 | make applets/usage | ||
15 | make applets/usgae_pod | ||
13 | 16 | ||
14 | cd /root | 17 | cd /root |
15 | tar -caf scripts.tar.xz busybox-w32/scripts/basic/docproc busybox-w32/scripts/basic/fixdep busybox-w32/scripts/basic/split-include busybox-w32/scripts/kconfig/conf | 18 | tar -caf scripts.tar.xz busybox-w32/scripts/basic/docproc busybox-w32/scripts/basic/fixdep busybox-w32/scripts/basic/split-include busybox-w32/scripts/kconfig/conf busybox-w32/applets/applet_tables busybox-w32/applets/usage busybox-w32/applets/usage_pod |