)
)
- factory.addStep(
- ShellCommand(
- name="pkgindex",
- description="Indexing packages",
- descriptionDone="Packages indexed",
- command=[
- "make",
- Interpolate("-j%(prop:nproc:-1)s"),
- "package/index",
- "V=s",
- "CONFIG_SIGNED_PACKAGES=",
- ],
- env=MakeEnv(),
- haltOnFailure=True,
- )
- )
-
factory.addStep(
ShellCommand(
name="images",
)
)
- factory.addStep(
- ShellCommand(
- name="checksums",
- description="Calculating checksums",
- descriptionDone="Checksums calculated",
- command=["make", "-j1", "checksum", "V=s"],
- env=MakeEnv(),
- haltOnFailure=True,
- )
- )
-
factory.addStep(
ShellCommand(
name="kmoddir",
descriptionDone="Kmod archive prepared",
command=[
"rsync",
+ "--remove-source-files",
"--include=/kmod-*.ipk",
"--include=/kmod-*.apk",
"--exclude=*",
)
)
+ factory.addStep(
+ ShellCommand(
+ name="pkgindex",
+ description="Indexing packages",
+ descriptionDone="Packages indexed",
+ command=[
+ "make",
+ Interpolate("-j%(prop:nproc:-1)s"),
+ "package/index",
+ "V=s",
+ "CONFIG_SIGNED_PACKAGES=",
+ ],
+ env=MakeEnv(),
+ haltOnFailure=True,
+ )
+ )
+
factory.addStep(
ShellCommand(
name="kmodindex",
)
)
+ factory.addStep(
+ ShellCommand(
+ name="checksums",
+ description="Calculating checksums",
+ descriptionDone="Checksums calculated",
+ command=["make", "-j1", "checksum", "V=s"],
+ env=MakeEnv(),
+ haltOnFailure=True,
+ )
+ )
+
# sign
factory.addStep(
MasterShellCommand(