mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-02-04 00:04:43 +00:00
18 lines
376 B
Bash
Executable File
18 lines
376 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
. toolchain.sh
|
|
|
|
target=$1
|
|
|
|
if [ "x${target}" == "x" ]; then
|
|
target="kernel_image"
|
|
fi
|
|
|
|
packagedate=$(date +%Y.%m)
|
|
if [ ! -e .config ]; then
|
|
./config.sh
|
|
fi
|
|
|
|
V=1 CROSS_SUFFIX="${version}" fakeroot make-kpkg --uc --us --initrd --cross-compile ${toolchain} --subarch efikamx --jobs=${numjobs} --rootcmd=fakeroot --arch armel --revision ${packagedate} ${target}
|
|
|