2
0
mirror of https://github.com/xcat2/xcat-dep.git synced 2024-11-23 10:01:46 +00:00

enhance xnba build scripts to build xnba-undi package from existed binaries,modify the xnba to be arch independent package to support mixed cluster

Former-commit-id: e40c545260450a69138a509aa07a2184178f0f05
This commit is contained in:
immarvin 2014-11-12 00:22:23 -08:00
parent a5e39c4dfe
commit 42f718a176
7 changed files with 110 additions and 7 deletions

9
xnba/README Normal file
View File

@ -0,0 +1,9 @@
xNBA for Debian
---------------
./make_deb.sh: build the package from the binaries under "binary" directory
./rebuild.sh : build the package from source code, this should only run on amd64/x86_64 platform, it will update the files under "binary" directory after compilation

BIN
xnba/binary/xnba.efi Normal file

Binary file not shown.

BIN
xnba/binary/xnba.kpxe Normal file

Binary file not shown.

89
xnba/build/rules.fromBIN Executable file
View File

@ -0,0 +1,89 @@
#!/usr/bin/make -f
# Sample debian/rules that uses debhelper.
# This file is public domain software, originally written by Joey Hess.
#
# This version is for packages that are architecture dependent.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
build: build-stamp
build-stamp:
dh_testdir
#ifeq ($(TARGET_ARCH),amd64)
# # Add here commands to compile the package.
# $(MAKE) -C src bin/undionly.kkpxe
# $(MAKE) -C src bin-x86_64-efi/snponly.efi
#endif
touch build-stamp
clean:
dh_testdir
dh_testroot
#ifeq ($(TARGET_ARCH),amd64)
# # Add here commands to clean up after the build process.
# $(MAKE) -C src clean
#endif
dh_clean
install: build
dh_testdir
dh_testroot
dh_prep
dh_installdirs
#ifeq ($(TARGET_ARCH),amd64)
# # Add here commands to install the package into debian/<packagename>
# cp src/bin/undionly.kkpxe `pwd`/binary/xnba.kpxe
# cp src/bin-x86_64-efi/snponly.efi `pwd`/binary/xnba.efi
# cp src/bin/undionly.kkpxe `pwd`/debian/`dh_listpackages`/tftpboot/xcat/xnba.kpxe
# cp src/bin-x86_64-efi/snponly.efi `pwd`/debian/`dh_listpackages`/tftpboot/xcat/xnba.efi
#else
cp binary/xnba.kpxe `pwd`/debian/`dh_listpackages`/tftpboot/xcat/xnba.kpxe
cp binary/xnba.efi `pwd`/debian/`dh_listpackages`/tftpboot/xcat/xnba.efi
#endif
#dh_movefiles
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_installexamples
dh_install
# dh_installmenu
# dh_installdebconf
# dh_installlogrotate
# dh_installemacsen
# dh_installcatalogs
# dh_installpam
# dh_installmime
# dh_installinit
# dh_installcron
# dh_installinfo
# dh_installwm
# dh_installudev
# dh_lintian
# dh_bugfiles
# dh_undocumented
dh_installman
dh_link
dh_strip
dh_compress
dh_fixperms
# dh_perl
# dh_makeshlibs
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install

View File

@ -9,7 +9,7 @@ Standards-Version: 1.0.3
#Vcs-Browser: http://git.debian.org/?p=collab-maint/gpxe.git;a=summary
Package: xnba-undi
Architecture: any
Architecture: all
Description: xCAT Network Boot Agent for x86 PXE hosts
The xCAT Network Boot Agent is a slightly modified version of gPXE.
It provides enhanced boot features for any UNDI compliant x86 host.

View File

@ -1,8 +1,3 @@
#!/bin/bash
tar xvfj xnba-1.0.3.tar.bz2
cd xnba-1.0.3
cp -rL ../debian .
dpkg-buildpackage -uc -us
cd -
rm -rf xnba-1.0.3
dpkg-buildpackage -uc -us -R./build/rules.fromBIN

10
xnba/rebuild.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
tar xvfj xnba-1.0.3.tar.bz2
cd xnba-1.0.3
cp -rL ../debian .
dpkg-buildpackage -uc -us -aamd64
cd -
rm -rf xnba-1.0.3
cp `pwd`/debian/`dh_listpackages`/tftpboot/xcat/xnba.kpxe `pwd`/binary/
cp `pwd`/debian/`dh_listpackages`/tftpboot/xcat/xnba.efi `pwd`/binary/