mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
T229: automatically import locally build .deb's from packages/ at build time.
Made it a separate script, if we ever need anything fancier than cp *.deb If not, we can move it to the makefile.
This commit is contained in:
parent
1d115aa6e4
commit
e119d44d2b
1
Makefile
1
Makefile
@ -16,6 +16,7 @@ prepare:
|
|||||||
rm -rf build/config/*
|
rm -rf build/config/*
|
||||||
@scripts/live-build-config
|
@scripts/live-build-config
|
||||||
cp -r data/live-build-config/* build/config/
|
cp -r data/live-build-config/* build/config/
|
||||||
|
@scripts/import-local-packages
|
||||||
|
|
||||||
@scripts/make-version-file
|
@scripts/make-version-file
|
||||||
|
|
||||||
|
|||||||
6
scripts/import-local-packages
Executable file
6
scripts/import-local-packages
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
LOCAL_PKG_DIR=build/config/packages.chroot
|
||||||
|
|
||||||
|
mkdir -p $LOCAL_PKG_DIR
|
||||||
|
cp packages/*.deb $LOCAL_PKG_DIR
|
||||||
Loading…
x
Reference in New Issue
Block a user