Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
ffbs-gluon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
darkbit
ffbs-gluon
Commits
97d637b1
Commit
97d637b1
authored
12 years ago
by
Matthias Schiffer
Browse files
Options
Downloads
Patches
Plain Diff
Only enable initscripts of non-base packages when they are explicitly installed
parent
c31afa7b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
builder/Makefile
+18
-8
18 additions, 8 deletions
builder/Makefile
with
18 additions
and
8 deletions
builder/Makefile
+
18
−
8
View file @
97d637b1
...
...
@@ -79,22 +79,37 @@ assemble_image: FORCE
mkdir
-p
$(
TARGET_DIR
)
$(
BIN_DIR
)
$(
TMP_DIR
)
$(
TARGET_DIR
)
/tmp
$(
OPKG
)
update
$(
MAKE
)
package_install
$(
MAKE
)
package_postinst
$(
MAKE
)
build_image
define
EnableInitscript
cd
$(TARGET_DIR)
&&
(
\
(
\
grep
'#!/bin/sh /etc/rc.common'
$(1)
>/dev/null
&&
\
IPKG_INSTROOT
=
$(
TARGET_DIR
)
$(
which bash
)
./etc/rc.common
$
$
script
enable
||
\
IPKG_INSTROOT
=
$(
TARGET_DIR
)
$(
which bash
)
./etc/rc.common
$
(
1
)
enable
||
\
true
\
)
endef
define
FileOrigin
$(
firstword
$(
shell
$(
OPKG
)
search
$(
1
)))
endef
enable_initscripts
:
FORCE
cd
$(
TARGET_DIR
)
&&
(
\
$(
foreach script,
$(
wildcard
$(
TARGET_DIR
)
/etc/init.d/
*
)
,
\
$(
if
$(
filter
$(
ENABLE_INITSCRIPTS_FROM
)
,
$(
call FileOrigin,
$(
script
)))
,
$(
call EnableInitscript,
$(
script
));)
\
)
:
\
)
package_install
:
FORCE
$(
OPKG
)
install
$(
PACKAGE_DIR
)
/libc_
*
.ipk
$(
OPKG
)
install
$(
PACKAGE_DIR
)
/kernel_
*
.ipk
$(OPKG)
install
$(DEFAULT_PACKAGES)
$($(PROFILE)_PACKAGES)
$(NO_TRACE_MAKE)
enable_initscripts
ENABLE_INITSCRIPTS_FROM
=
%
$(OPKG)
install
$(GLUON_PACKAGES)
$(NO_TRACE_MAKE)
enable_initscripts
ENABLE_INITSCRIPTS_FROM
=
"
$(
GLUON_PACKAGES
)
"
rm
-f
$(TARGET_DIR)/usr/lib/opkg/lists/*
$(TARGET_DIR)/tmp/opkg.lock
copy_files
:
FORCE
...
...
@@ -109,11 +124,6 @@ copy_files: FORCE
done
;
)
$(
CP
)
$(
USER_FILES
)
/
*
$(
TARGET_DIR
)
/
package_postinst
:
FORCE
for
script
in
$(
TARGET_DIR
)
/etc/init.d/
*
;
do
\
$(
call EnableInitscript,
$$
script
);
\
done
||
true
include
$(INCLUDE_DIR)/image.mk
build_image
:
FORCE
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment