Compare commits
No commits in common. "a8fbfdc1d482be76c1a097b4ec7eb1f54ed56b15" and "b46c3690191ca96f978dfc69d1a930a48f1a6659" have entirely different histories.
a8fbfdc1d4
...
b46c369019
11 changed files with 20 additions and 22 deletions
|
@ -1 +1,7 @@
|
||||||
mkdir -p $1/dev $1/mnt $1/proc $1/run $1/sbin $1/sys $1/tmp $1/bin $1/usr/bin $1/lib
|
mkdir $1/dev
|
||||||
|
mkdir $1/mnt
|
||||||
|
mkdir $1/proc
|
||||||
|
mkdir $1/run
|
||||||
|
mkdir $1/sbin
|
||||||
|
mkdir $1/sys
|
||||||
|
mkdir $1/tmp
|
|
@ -1,5 +1,5 @@
|
||||||
pkg_config_deploy=true
|
pkg_config_deploy=true
|
||||||
pkg_config_ver="0.3"
|
pkg_config_ver="0.2"
|
||||||
pkg_config_name="alnux"
|
pkg_config_name="alnux"
|
||||||
pkg_config_makedepends=""
|
pkg_config_makedepends=""
|
||||||
pkg_config_depends=""
|
pkg_config_depends=""
|
|
@ -1,6 +0,0 @@
|
||||||
wget -O busybox.tar.bz2 https://busybox.net/downloads/busybox-1.33.1.tar.bz2
|
|
||||||
tar -xf busybox.tar.bz2
|
|
||||||
cd busybox
|
|
||||||
make defconfig
|
|
||||||
LDFLAGS="--static" make
|
|
||||||
make install DESTDIR="$1"
|
|
|
@ -1,5 +1,5 @@
|
||||||
pkg_config_deploy=true
|
pkg_config_deploy=true
|
||||||
pkg_config_ver="1.33.1"
|
pkg_config_ver="0.2"
|
||||||
pkg_config_name="busybox"
|
pkg_config_name="busybox"
|
||||||
pkg_config_makedepends=""
|
pkg_config_makedepends=""
|
||||||
pkg_config_depends=""
|
pkg_config_depends=""
|
5
glibc-bin/package
Executable file
5
glibc-bin/package
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
pkg_config_deploy=true
|
||||||
|
pkg_config_ver="0.1"
|
||||||
|
pkg_config_name="glibc-bin"
|
||||||
|
pkg_config_makedepends=""
|
||||||
|
pkg_config_depends=""
|
BIN
glibc-bin/payload/lib/x86_64-linux-gnu/libc.so.6
Executable file
BIN
glibc-bin/payload/lib/x86_64-linux-gnu/libc.so.6
Executable file
Binary file not shown.
BIN
glibc-bin/payload/lib64/ld-linux-x86-64.so.2
Executable file
BIN
glibc-bin/payload/lib64/ld-linux-x86-64.so.2
Executable file
Binary file not shown.
|
@ -1,8 +0,0 @@
|
||||||
wget -O glibc.tar.gz https://ftp.gnu.org/gnu/libc/glibc-2.33.tar.gz
|
|
||||||
tar -xf glibc.tar.gz
|
|
||||||
cd glibc
|
|
||||||
mkdir build
|
|
||||||
cd build
|
|
||||||
../configure --prefix=/usr
|
|
||||||
make
|
|
||||||
make install DESTDIR="$1"
|
|
|
@ -1,5 +0,0 @@
|
||||||
pkg_config_deploy=true
|
|
||||||
pkg_config_ver="2.33"
|
|
||||||
pkg_config_name="glibc"
|
|
||||||
pkg_config_makedepends=""
|
|
||||||
pkg_config_depends=""
|
|
5
helloworld/package
Executable file
5
helloworld/package
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
pkg_config_deploy=true
|
||||||
|
pkg_config_ver="0.2"
|
||||||
|
pkg_config_name="helloworld"
|
||||||
|
pkg_config_makedepends=""
|
||||||
|
pkg_config_depends=""
|
1
helloworld/payload/usr/bin/helloworld
Executable file
1
helloworld/payload/usr/bin/helloworld
Executable file
|
@ -0,0 +1 @@
|
||||||
|
echo "Hello, Alnux world!"
|
Loading…
Reference in a new issue