All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rootfs_ipk: issue a diagnostic if rootfs is declared read-only and not all maintainer scripts could be applied offline
@ 2011-05-24 14:49 Phil Blundell
  2011-05-25 17:19 ` Saul Wold
  0 siblings, 1 reply; 2+ messages in thread
From: Phil Blundell @ 2011-05-24 14:49 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Signed-off-by: Phil Blundell <philb@gnu.org>
---
 meta/classes/rootfs_ipk.bbclass |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes/rootfs_ipk.bbclass
index 4c8088b..99584eb 100644
--- a/meta/classes/rootfs_ipk.bbclass
+++ b/meta/classes/rootfs_ipk.bbclass
@@ -54,17 +54,27 @@ fakeroot rootfs_ipk_do_rootfs () {
 	${OPKG_POSTPROCESS_COMMANDS}
 	${ROOTFS_POSTINSTALL_COMMAND}
 	
+	runtime_script_required=0
 	for i in ${IMAGE_ROOTFS}${opkglibdir}/info/*.preinst; do
 		if [ -f $i ] && ! sh $i; then
+		     	runtime_script_required=1
 			opkg-cl ${IPKG_ARGS} flag unpacked `basename $i .preinst`
 		fi
 	done
 	for i in ${IMAGE_ROOTFS}${opkglibdir}/info/*.postinst; do
 		if [ -f $i ] && ! sh $i configure; then
+		     	runtime_script_required=1
 			opkg-cl ${IPKG_ARGS} flag unpacked `basename $i .postinst`
 		fi
 	done
 
+	if ${@base_contains("IMAGE_FEATURES", "read-only-rootfs", "true", "false" ,d)}; then
+		if [ $runtime_script_required -eq 1 ]; then
+			echo "Some packages could not be configured offline and rootfs is read-only."
+			exit 1
+		fi
+	fi
+
 	install -d ${IMAGE_ROOTFS}/${sysconfdir}
 	echo ${BUILDNAME} > ${IMAGE_ROOTFS}/${sysconfdir}/version
 
-- 
1.7.1






^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] rootfs_ipk: issue a diagnostic if rootfs is declared read-only and not all maintainer scripts could be applied offline
  2011-05-24 14:49 [PATCH] rootfs_ipk: issue a diagnostic if rootfs is declared read-only and not all maintainer scripts could be applied offline Phil Blundell
@ 2011-05-25 17:19 ` Saul Wold
  0 siblings, 0 replies; 2+ messages in thread
From: Saul Wold @ 2011-05-25 17:19 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 05/24/2011 07:49 AM, Phil Blundell wrote:
>
> Signed-off-by: Phil Blundell<philb@gnu.org>
> ---
>   meta/classes/rootfs_ipk.bbclass |   10 ++++++++++
>   1 files changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes/rootfs_ipk.bbclass
> index 4c8088b..99584eb 100644
> --- a/meta/classes/rootfs_ipk.bbclass
> +++ b/meta/classes/rootfs_ipk.bbclass
> @@ -54,17 +54,27 @@ fakeroot rootfs_ipk_do_rootfs () {
>   	${OPKG_POSTPROCESS_COMMANDS}
>   	${ROOTFS_POSTINSTALL_COMMAND}
>   	
> +	runtime_script_required=0
>   	for i in ${IMAGE_ROOTFS}${opkglibdir}/info/*.preinst; do
>   		if [ -f $i ]&&  ! sh $i; then
> +		     	runtime_script_required=1
>   			opkg-cl ${IPKG_ARGS} flag unpacked `basename $i .preinst`
>   		fi
>   	done
>   	for i in ${IMAGE_ROOTFS}${opkglibdir}/info/*.postinst; do
>   		if [ -f $i ]&&  ! sh $i configure; then
> +		     	runtime_script_required=1
>   			opkg-cl ${IPKG_ARGS} flag unpacked `basename $i .postinst`
>   		fi
>   	done
>
> +	if ${@base_contains("IMAGE_FEATURES", "read-only-rootfs", "true", "false" ,d)}; then
> +		if [ $runtime_script_required -eq 1 ]; then
> +			echo "Some packages could not be configured offline and rootfs is read-only."
> +			exit 1
> +		fi
> +	fi
> +
>   	install -d ${IMAGE_ROOTFS}/${sysconfdir}
>   	echo ${BUILDNAME}>  ${IMAGE_ROOTFS}/${sysconfdir}/version
>
Merged into OE-Core

Thanks
	Sau!




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-05-25 17:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-24 14:49 [PATCH] rootfs_ipk: issue a diagnostic if rootfs is declared read-only and not all maintainer scripts could be applied offline Phil Blundell
2011-05-25 17:19 ` Saul Wold

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.