13 lines
292 B
CMake
13 lines
292 B
CMake
file(GLOB runlevels *.runlevel)
|
|
foreach (f ${runlevels})
|
|
get_filename_component(name ${f} NAME_WLE)
|
|
bsp_add_file(
|
|
ID runlevel-${name}
|
|
SRC_PATH ${f}
|
|
DEST_DIR /etc/herdd/runlevels)
|
|
sysroot_add_file(
|
|
ID runlevel-${name}
|
|
SRC_PATH ${f}
|
|
DEST_DIR /etc/herdd/runlevels)
|
|
endforeach (f)
|