postinst = postinst[0:m1] + postinst[m2:]
to:
postinst = '. "$(dirname "$0")/usr/sbin/chromeos-common.sh"' + "\n" +
postinst[0:m1] + postinst[m2:]
The missing function call goes away, but the new error is:
ERROR: cgpt add: GptSanityCheck() returned 3: GPT_ERROR_INVALID_ENTRIES
I'm not sure where that is being check/called. This sort of error
might indicated a bigger problem?
Any ideas?
Thanks,
Todd
> --
> Chromium OS discuss mailing list: chromium-...@chromium.org
> View archives, change email options, or unsubscribe:
> http://groups.google.com/a/chromium.org/group/chromium-os-discuss?hl=en
>
--
Todd Deshane
http://todddeshane.net
http://runningxen.com
(I also have the same problem.)
-S
If I knew where to find more about that I would look into the code
more. Any ideas?
Thanks,
Todd
--
The original line was:
install_gpt "${TEMP_IMG}" "${TEMP_ROOTFS}" "${TEMP_KERN}" "${TEMP_STATE}" \
"${TEMP_PMBR}" "${TEMP_ESP}" true false ${FLAGS_rootfs_partition_size}
I changed it to:
install_gpt "${TEMP_IMG}" "${TEMP_ROOTFS}" "${TEMP_KERN}" "${TEMP_STATE}" \
"${TEMP_PMBR}" "${TEMP_ESP}" false ${FLAGS_rootfs_partition_size}
Which fixes the problem. Could somebody double check that I made the
right choice to get rid of the true and not the false?
Must be the install_gpt function had a change in parameters.
This will need to get fixed in the latest vm scripts patch before it
gets committed.
Thanks,
Todd
-S
> --
> Chromium OS Developers mailing list: chromiu...@chromium.org
> View archives, change email options, or unsubscribe:
> http://groups.google.com/a/chromium.org/group/chromium-os-dev?hl=en
>
Still no GUI with USE -opengl
(Can anyone on the Chromium team suggest how we might get CrOS to run
in VirtualBox/VMware?
-S
# Set up the partition table
install_gpt "$TEMP_IMG" "$TEMP_ROOTFS" "$TEMP_KERN" "$TEMP_STATE" \
"$TEMP_PMBR" "$TEMP_ESP" true
I updated this morning so I am wondering if you have the latest.
Fabrice
Do you have this patch:
http://codereview.chromium.org/2803015/show
(it changes image_to_vmware.sh to image_to_vm.sh, with lots of other
fixes... do ./image_to_vm.sh --help for options).
Todd
--
On Mon, Jun 28, 2010 at 8:37 AM, Rahul Chaturvedi <r...@chromium.org> wrote:
> postinst = '. "$(dirname "$0")/usr/sbin/chromeos-common.sh"' + "\n" +
>
> I don't get why you're replacing the install script with the common script?
>
> On Sun, Jun 27, 2010 at 08:22, Todd Deshane <desh...@gmail.com> wrote:
>>
>> postinst = '. "$(dirname "$0")/usr/sbin/chromeos-common.sh"' + "\n" +
>
>
--