Imported sources from subversion.
This commit is contained in:
1016
packages/busybox/config
Normal file
1016
packages/busybox/config
Normal file
File diff suppressed because it is too large
Load Diff
40
packages/busybox/default.bash
Normal file
40
packages/busybox/default.bash
Normal file
@@ -0,0 +1,40 @@
|
||||
version=\
|
||||
(
|
||||
"1.20.2"
|
||||
)
|
||||
|
||||
url=\
|
||||
(
|
||||
"http://busybox.net/downloads/busybox-$version.tar.bz2"
|
||||
)
|
||||
|
||||
md5=\
|
||||
(
|
||||
"e025414bc6cd79579cc7a32a45d3ae1c"
|
||||
)
|
||||
|
||||
post_unpack()
|
||||
{
|
||||
patches=$(ls "$cfg_package_spec_dir"/patches/*.patch)
|
||||
|
||||
if [ -n "$patches" ]; then
|
||||
cat $patches | patch -p1
|
||||
fi
|
||||
}
|
||||
|
||||
configure()
|
||||
{
|
||||
cp "$cfg_package_spec_dir"/config .config &&
|
||||
yes '' | $cmd_make CROSS_COMPILE="$cfg_target_canonical"- oldconfig
|
||||
}
|
||||
|
||||
build()
|
||||
{
|
||||
$cmd_make CROSS_COMPILE="$cfg_target_canonical"-
|
||||
}
|
||||
|
||||
target_install()
|
||||
{
|
||||
$cmd_make CROSS_COMPILE="$cfg_target_canonical"- CONFIG_PREFIX=$cfg_dir_rootfs install &&
|
||||
tar -C "$cfg_package_spec_dir/fs" --exclude .svn -c -f - . | tar -C "$cfg_dir_rootfs" -x -v -f -
|
||||
}
|
1
packages/busybox/fs/etc/inetd.conf
Normal file
1
packages/busybox/fs/etc/inetd.conf
Normal file
@@ -0,0 +1 @@
|
||||
21 stream tcp nowait root /usr/sbin/ftpd /usr/sbin/ftpd -w /opt/lsts
|
Reference in New Issue
Block a user