diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2018-02-07 18:13:30 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2018-02-07 18:13:30 -0500 |
commit | afba797082e1cf8929b2679b348b9433359b670c (patch) | |
tree | 1c8d91a49d79385040068e4fe1506a0fe2589ee1 /libre/grub-git | |
parent | 534a2c53818eed17a6c04f2006e566b479a7c7ac (diff) | |
download | abslibre-afba797082e1cf8929b2679b348b9433359b670c.tar.gz abslibre-afba797082e1cf8929b2679b348b9433359b670c.tar.bz2 abslibre-afba797082e1cf8929b2679b348b9433359b670c.zip |
Removing grub-git: Use grub instead
Diffstat (limited to 'libre/grub-git')
22 files changed, 0 insertions, 29835 deletions
diff --git a/libre/grub-git/0001-Fix-security-issue-when-reading-username-and-passwor.patch b/libre/grub-git/0001-Fix-security-issue-when-reading-username-and-passwor.patch deleted file mode 100644 index aa07f2ffc..000000000 --- a/libre/grub-git/0001-Fix-security-issue-when-reading-username-and-passwor.patch +++ /dev/null @@ -1,47 +0,0 @@ -From e16eeda1200deabd0d3a4af968d526d62845a85f Mon Sep 17 00:00:00 2001 -From: Hector Marco-Gisbert <hecmargi@upv.es> -Date: Fri, 13 Nov 2015 16:21:09 +0100 -Subject: [PATCH] Fix security issue when reading username and password - - This patch fixes two integer underflows at: - * grub-core/lib/crypto.c - * grub-core/normal/auth.c - -Resolves: CVE-2015-8370 - -Signed-off-by: Hector Marco-Gisbert <hecmargi@upv.es> -Signed-off-by: Ismael Ripoll-Ripoll <iripoll@disca.upv.es> ---- - grub-core/lib/crypto.c | 2 +- - grub-core/normal/auth.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/grub-core/lib/crypto.c b/grub-core/lib/crypto.c -index 010e550..524a3d8 100644 ---- a/grub-core/lib/crypto.c -+++ b/grub-core/lib/crypto.c -@@ -468,7 +468,7 @@ grub_password_get (char buf[], unsigned buf_size) - break; - } - -- if (key == '\b') -+ if (key == '\b' && cur_len) - { - cur_len--; - continue; -diff --git a/grub-core/normal/auth.c b/grub-core/normal/auth.c -index c6bd96e..5782ec5 100644 ---- a/grub-core/normal/auth.c -+++ b/grub-core/normal/auth.c -@@ -172,7 +172,7 @@ grub_username_get (char buf[], unsigned buf_size) - break; - } - -- if (key == '\b') -+ if (key == '\b' && cur_len) - { - cur_len--; - grub_printf ("\b"); --- -2.6.4 - diff --git a/libre/grub-git/0069-Backport-gnulib-fixes-for-C11.-Fixes-Savannah-bug-37.patch b/libre/grub-git/0069-Backport-gnulib-fixes-for-C11.-Fixes-Savannah-bug-37.patch deleted file mode 100644 index e043633af..000000000 --- a/libre/grub-git/0069-Backport-gnulib-fixes-for-C11.-Fixes-Savannah-bug-37.patch +++ /dev/null @@ -1,50 +0,0 @@ -From d09689a5a2863043d007c1acb9bf0a8d1d3b776d Mon Sep 17 00:00:00 2001 -From: Colin Watson <cjwatson@ubuntu.com> -Date: Fri, 28 Dec 2012 06:43:35 +0000 -Subject: [PATCH 069/364] Backport gnulib fixes for C11. Fixes Savannah bug - #37738. - -* grub-core/gnulib/stdio.in.h (gets): Warn on use only if -HAVE_RAW_DECL_GETS. -* m4/stdio_h.m4 (gl_STDIO_H): Check for gets. ---- - ChangeLog | 8 ++++++++ - grub-core/gnulib/stdio.in.h | 6 ++++-- - m4/stdio_h.m4 | 2 +- - 3 files changed, 13 insertions(+), 3 deletions(-) - -diff --git a/grub-core/gnulib/stdio.in.h b/grub-core/gnulib/stdio.in.h -index 80b9dbf..a8b00c6 100644 ---- a/grub-core/gnulib/stdio.in.h -+++ b/grub-core/gnulib/stdio.in.h -@@ -138,10 +138,12 @@ _GL_WARN_ON_USE (fflush, "fflush is not always POSIX compliant - " - #endif - - /* It is very rare that the developer ever has full control of stdin, -- so any use of gets warrants an unconditional warning. Assume it is -- always declared, since it is required by C89. */ -+ so any use of gets warrants an unconditional warning; besides, C11 -+ removed it. */ - #undef gets -+#if HAVE_RAW_DECL_GETS - _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); -+#endif - - #if @GNULIB_FOPEN@ - # if @REPLACE_FOPEN@ -diff --git a/m4/stdio_h.m4 b/m4/stdio_h.m4 -index f5650cd..8458bec 100644 ---- a/m4/stdio_h.m4 -+++ b/m4/stdio_h.m4 -@@ -37,7 +37,7 @@ AC_DEFUN([gl_STDIO_H], - dnl corresponding gnulib module is not in use, and which is not - dnl guaranteed by C89. - gl_WARN_ON_USE_PREPARE([[#include <stdio.h> -- ]], [dprintf fpurge fseeko ftello getdelim getline popen renameat -+ ]], [dprintf fpurge fseeko ftello getdelim getline gets popen renameat - snprintf tmpfile vdprintf vsnprintf]) - ]) - --- -1.8.1.4 - diff --git a/libre/grub-git/09_parabola b/libre/grub-git/09_parabola deleted file mode 100644 index 90a9062a3..000000000 --- a/libre/grub-git/09_parabola +++ /dev/null @@ -1,195 +0,0 @@ -#!/usr/bin/env bash - -## -## grub-mkconfig helper script specific to Parabola GNU/Linux-libre -## Contributed by "Keshav Amburay" <the ddoott ridikulus ddoott rat aatt geemmayil ddoott ccoomm> -## Rebranded for Parabola by "André Silva" <emulatorman@parabola.nu> -## Updated on 08 February 2014 -## -## Script based on do_grub_config() function in Arch Archboot ISO Installer/Setup script -## Some parts taken from /etc/grub.d/10_linux script shipped by GRUB(2) upstream -## -## This script can be freely distributed and/or modified -## under the terms of the GNU General Public License as published by -## the Free Software Foundation, either version 3 of the License, or -## (at your option) any later version. -## -## This script is distributed in the hope that it will be useful, -## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -## GNU General Public License for more details. -## - -_FUNC_GRUB_FILE_PRESENT() { - - [[ -z "${GRUB_PLATFORM}" ]] && GRUB_PLATFORM="x86" - - if [[ "${GRUB_PLATFORM}" == "x86" ]]; then - check="--is-x86-linux32" - elif [[ "${GRUB_PLATFORM}" == "i386-xen-pae" ]]; then - check="--is-i386-xen-pae-domu" - elif [[ "${GRUB_PLATFORM}" == "x86_64-xen" ]]; then - check="--is-x86_64-xen-domu" - else - check="--is-${GRUB_PLATFORM}-linux" - fi - - case "${GRUB_PLATFORM}" in - x86) - list="$(for i in "${GRUB_ROOT}"/boot/vmlinuz-linux* ; do - if grub_file_is_not_garbage "${i}" && "${grub_file}" ${check} "${i}" ; then echo -n "${i} " ; fi - done)" ;; - *) - list="$(for i in "${GRUB_ROOT}"/boot/vmlinuz-linux* ; do - if grub_file_is_not_garbage "${i}" && "${grub_file}" ${check} "${i}" ; then echo -n "${i} " ; fi - done)" ;; - esac -} - -set -e - -prefix="/usr" -exec_prefix="${prefix}" -datarootdir="/usr/share" -datadir="${datarootdir}" -sysconfdir="/etc" - -. "${datarootdir}/grub/grub-mkconfig_lib" - -. "${sysconfdir}/default/grub" - -export TEXTDOMAIN="grub" -export TEXTDOMAINDIR="${datarootdir}/locale" - -CLASS="--class parabola --class gnu-linux --class gnu --class os" - -[[ "${grub_file}" != "" ]] && _FUNC_GRUB_FILE_PRESENT - -BOOT_PART_FS_UUID="$(${grub_probe} --target="fs_uuid" "/boot" 2>/dev/null)" -BOOT_PART_HINTS_STRING="$(${grub_probe} --target="hints_string" "/boot" 2>/dev/null || true)" -BOOT_PART_FS="$(${grub_probe} --target="fs" "/boot" 2>/dev/null)" - -ROOT_PART_GRUB_DEVICE="$(${grub_probe} --target=device / || true)" -ROOT_PART_FS="$(${grub_probe} --device ${ROOT_PART_GRUB_DEVICE} --target=fs 2> /dev/null || echo "unknown")" - -if [[ "${GRUB_LINUX_ROOT_DEVICE}" == "" ]]; then - - case "${ROOT_PART_FS}" in - btrfs) - rootsubvol="$(make_system_path_relative_to_its_root /)" - rootsubvol="${rootsubvol#/}" - if [[ "${rootsubvol}" != "" ]]; then - GRUB_LINUX_ROOT_DEVICE="subvol=${rootsubvol}" - fi - ;; - zfs) - rpool="$(${grub_probe} --device ${GRUB_DEVICE} --target=fs_label 2>/dev/null || true)" - bootfs="$(make_system_path_relative_to_its_root / | sed -e "s,@$,,")" - GRUB_LINUX_ROOT_DEVICE="ZFS=${rpool}${bootfs}" - ;; - esac - - if [[ "${GRUB_DEVICE_UUID}" == "" ]] || \ - [[ "${GRUB_DISABLE_LINUX_UUID}" == "true" ]] || \ - [[ ! -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" ]] || \ - uses_abstraction "${GRUB_DEVICE}" lvm ; then - GRUB_LINUX_ROOT_DEVICE="${GRUB_DEVICE}" - else - GRUB_LINUX_ROOT_DEVICE="UUID=${GRUB_DEVICE_UUID}" - fi -fi - -[[ "${GRUB_LINUX_PARAMS}" == "" ]] && GRUB_LINUX_PARAMS="${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" - -for _KERNEL_ in ${list} ; do - - echo "Found linux image: ${_KERNEL_}" >&2 - - basename="$(basename "${_KERNEL_}")" - dirname="$(dirname "${_KERNEL_}")" - REAL_DIR="$(make_system_path_relative_to_its_root "${dirname}")" - - _KERNEL_FILE_="$(echo ${_KERNEL_} | sed 's,/boot/,,g')" - _KERNEL_PKG_="pkg-$(echo ${_KERNEL_FILE_} | sed 's,vmlinuz-,,g')" - - _INITRAMFS_="${_KERNEL_FILE_/vmlinuz-/initramfs-}.img" - - if [[ -e "/boot/${_INITRAMFS_}" ]]; then - - echo "Found initramfs image: /boot/${_INITRAMFS_}" >&2 - -cat << EOF - -menuentry "Parabola GNU/Linux-libre ${_KERNEL_PKG_} kernel" ${CLASS} { - $(save_default_entry) - if [ x\$feature_all_video_module = xy ]; then - insmod all_video - fi - set gfxpayload=keep - insmod ${BOOT_PART_FS} - if [ x\$feature_platform_search_hint = xy ]; then - search --no-floppy --fs-uuid --set=root ${BOOT_PART_HINTS_STRING} ${BOOT_PART_FS_UUID} - else - search --no-floppy --fs-uuid --set=root ${BOOT_PART_FS_UUID} - fi - echo 'Loading Parabola GNU/Linux-libre ${_KERNEL_PKG_} kernel ...' - linux ${REAL_DIR}/${_KERNEL_FILE_} root=${GRUB_LINUX_ROOT_DEVICE} rw ${GRUB_LINUX_PARAMS} - echo 'Loading Parabola GNU/Linux-libre ${_KERNEL_PKG_} kernel initramfs ...' - initrd ${REAL_DIR}/${_INITRAMFS_} -} - -EOF - fi - - _INITRAMFS_FALLBACK_="${_KERNEL_FILE_/vmlinuz-/initramfs-}-fallback.img" - - if [[ -e "/boot/${_INITRAMFS_FALLBACK_}" ]]; then - - echo "Found fallback initramfs image: /boot/${_INITRAMFS_FALLBACK_}" >&2 - -cat << EOF - -menuentry "Parabola GNU/Linux-libre ${_KERNEL_PKG_} kernel (fallback initramfs)" ${CLASS} { - $(save_default_entry) - if [ x\$feature_all_video_module = xy ]; then - insmod all_video - fi - set gfxpayload=keep - insmod ${BOOT_PART_FS} - if [ x\$feature_platform_search_hint = xy ]; then - search --no-floppy --fs-uuid --set=root ${BOOT_PART_HINTS_STRING} ${BOOT_PART_FS_UUID} - else - search --no-floppy --fs-uuid --set=root ${BOOT_PART_FS_UUID} - fi - echo 'Loading Parabola GNU/Linux-libre ${_KERNEL_PKG_} kernel ...' - linux ${REAL_DIR}/${_KERNEL_FILE_} root=${GRUB_LINUX_ROOT_DEVICE} rw ${GRUB_LINUX_PARAMS} - echo 'Loading Parabola GNU/Linux-libre ${_KERNEL_PKG_} kernel fallback initramfs ...' - initrd ${REAL_DIR}/${_INITRAMFS_FALLBACK_} -} - -EOF - fi - - if [[ ! -e "/boot/${_INITRAMFS_}" ]] && [[ ! -e "/boot/${_INITRAMFS_FALLBACK_}" ]]; then -cat << EOF - -menuentry "Parabola GNU/Linux-libre ${_KERNEL_PKG_} kernel (no initramfs)" ${CLASS} { - $(save_default_entry) - if [ x\$feature_all_video_module = xy ]; then - insmod all_video - fi - set gfxpayload=keep - insmod ${BOOT_PART_FS} - if [ x\$feature_platform_search_hint = xy ]; then - search --no-floppy --fs-uuid --set=root ${BOOT_PART_HINTS_STRING} ${BOOT_PART_FS_UUID} - else - search --no-floppy --fs-uuid --set=root ${BOOT_PART_FS_UUID} - fi - echo 'Loading Parabola GNU/Linux-libre ${_KERNEL_PKG_} kernel ...' - linux ${REAL_DIR}/${_KERNEL_FILE_} root=${GRUB_LINUX_ROOT_DEVICE} rw ${GRUB_LINUX_PARAMS} -} - -EOF - fi - -done diff --git a/libre/grub-git/60_memtest86+ b/libre/grub-git/60_memtest86+ deleted file mode 100644 index 086f0cc84..000000000 --- a/libre/grub-git/60_memtest86+ +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env bash -######################################################## -# This script generates a memtest86+ entry on grub.cfg # -# if memtest is installed on the system. # -######################################################## - -prefix="/usr" -exec_prefix="${prefix}" - -datarootdir="/usr/share" -datadir="${datarootdir}" - -. "${datadir}/grub/grub-mkconfig_lib" - -MEMTEST86_IMAGE="/boot/memtest86+/memtest.bin" -CLASS="--class memtest86 --class gnu --class tool" - -if [ -e "${MEMTEST86_IMAGE}" ] && is_path_readable_by_grub "${MEMTEST86_IMAGE}" ; then - ## image exists, create menu entry - echo "Found memtest86+ image: ${MEMTEST86_IMAGE}" >&2 - _GRUB_MEMTEST_HINTS_STRING="$(${grub_probe} --target=hints_string ${MEMTEST86_IMAGE})" - _GRUB_MEMTEST_FS_UUID="$(${grub_probe} --target=fs_uuid ${MEMTEST86_IMAGE})" - _GRUB_MEMTEST_REL_PATH="$(make_system_path_relative_to_its_root ${MEMTEST86_IMAGE})" - cat << EOF -if [ "\${grub_platform}" == "pc" ]; then - menuentry "Memory Tester (memtest86+)" ${CLASS} { - search --fs-uuid --no-floppy --set=root ${_GRUB_MEMTEST_HINTS_STRING} ${_GRUB_MEMTEST_FS_UUID} - linux16 ${_GRUB_MEMTEST_REL_PATH} ${GRUB_CMDLINE_MEMTEST86} - } -fi -EOF -fi diff --git a/libre/grub-git/PKGBUILD b/libre/grub-git/PKGBUILD deleted file mode 100644 index 269bc5e8d..000000000 --- a/libre/grub-git/PKGBUILD +++ /dev/null @@ -1,528 +0,0 @@ -# Maintainer: André Silva <emulatorman@hyperbola.info> -# Maintainer: Márcio Silva <coadde@hyperbola.info> - -_UNIFONT_VER='8.0.01' - -pkgbase='grub-git' -pkgname+=('grub-am335x_bone-git' 'grub-udoo-git' 'grub-omap3_beagle-git' - 'grub-omap3_beagle_xm-git' 'grub-omap3_beagle_xm_ab-git') -pkgdesc='GNU GRand Unified Bootloader (2), (Parabola rebranded)' -pkgver='r9296.92bbf25' -pkgrel='1' -url='https://www.gnu.org/software/grub/' -arch=('armv7h') -license=('GPL3') -backup=('etc/default/grub' 'etc/grub.d/40_custom') -install="grub.install" -options=('!makeflags') -depends=('sh' 'xz' 'gettext' 'device-mapper') -makedepends=('git' 'rsync' 'xz' 'freetype2' 'ttf-dejavu' 'python' 'autogen' - 'texinfo' 'help2man' 'gettext' 'device-mapper' 'fuse') - -optdepends=('freetype2: For grub-mkfont usage' - 'fuse: For grub-mount usage' - 'dosfstools: For grub-mkrescue FAT FS and EFI support' - 'libisoburn: Provides xorriso for generating grub rescue iso using grub-mkrescue' - 'os-prober: To detect other OSes when generating grub.cfg in BIOS systems' - 'mtools: For grub-mkrescue FAT FS support') - -source=("grub-${pkgver}::git+git://git.sv.gnu.org/grub.git" - "http://ftp.gnu.org/gnu/unifont/unifont-${_UNIFONT_VER}/unifont-${_UNIFONT_VER}.bdf.gz" - "http://ftp.gnu.org/gnu/unifont/unifont-${_UNIFONT_VER}/unifont-${_UNIFONT_VER}.bdf.gz.sig" - '0001-Fix-security-issue-when-reading-username-and-passwor.patch' - 'grub-10_linux-20_linux_xen-detect-parabola-initramfs.patch' - 'grub-add-GRUB_COLOR_variables.patch' - '60_memtest86+' - 'grub.default' - 'grub-10_linux-20_linux_xen-detect-am335x_bone+am335x_boneblack-devicetree-file.patch' - 'grub-10_linux-20_linux_xen-detect-omap3_beagle-devicetree-file.patch' - 'grub-10_linux-20_linux_xen-detect-omap3_beagle_xm-devicetree-file.patch' - 'grub-10_linux-20_linux_xen-detect-omap3_beagle_xm_ab-devicetree-file.patch' - 'grub-10_linux-20_linux_xen-detect-udoo-devicetree-file.patch' - 'grub-10_linux-20_linux_xen-rebrand-free-distros.patch') - -md5sums=('SKIP' - '31cd5b872d38a3a3581ef1f7b2ef1216' - 'SKIP' - '9589ec46a04f9bb4d5da987340a4a324' - '3a9bb9bafe0062388e11f72f0e80ba7e' - 'e506ae4a9f9f7d1b765febfa84e10d48' - 'be55eabc102f2c60b38ed35c203686d6' - '8d1dd54ae4a1b550c097e056892ce953' - 'a46695e19b588a53b8bac9e3b3c56096' - '803f5b5f56ba6d74ca84aea67659116e' - 'b2c20ce3aa7944636b3ea499b40f2160' - '7e3245bdd30e291f44ab8a00b8a38f3e' - '95b721dfe74f42df52b7ae94e0e7c067' - 'e0133ad89ab3014210d4599f396a556e') - -validpgpkeys=('95D2E9AB8740D8046387FD151A09227B1F435A33') #Paul Hardy - -pkgver() { - cd "${srcdir}/grub-${pkgver}" - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" -} - -prepare() { - cd "${srcdir}/grub-${pkgver}/" - - msg 'CVE-2015-8370' - patch -Np1 -i "${srcdir}/0001-Fix-security-issue-when-reading-username-and-passwor.patch" - - msg 'Patch to detect of Parabola GNU/Linux-libre initramfs images by grub-mkconfig' - patch -Np1 -i "${srcdir}/grub-10_linux-20_linux_xen-detect-parabola-initramfs.patch" - - msg 'Patch to enable GRUB_COLOR_* variables in grub-mkconfig' - ## Based on http://lists.gnu.org/archive/html/grub-devel/2012-02/msg00021.html - patch -Np1 -i "${srcdir}/grub-add-GRUB_COLOR_variables.patch" - - msg 'Fix DejaVuSans.ttf location so that grub-mkfont can create *.pf2 files for starfield theme' - sed 's|/usr/share/fonts/dejavu|/usr/share/fonts/dejavu /usr/share/fonts/TTF|g' -i "${srcdir}/grub-${pkgver}/configure.ac" - - msg 'Rebranding for some free distros' - patch -Np1 -i "${srcdir}/grub-10_linux-20_linux_xen-rebrand-free-distros.patch" - - msg "Fix mkinitcpio 'rw' FS#36275" - sed 's| ro | rw |g' -i "${srcdir}/grub-${pkgver}/util/grub.d/10_linux.in" - - # msg 'autogen.sh requires python (2/3). since bzr is in makedepends, use python2 and no need to pull python3' - # sed 's|python |python2 |g' -i "${srcdir}/grub-${pkgver}/autogen.sh" - - msg 'Pull in latest language files' - ./linguas.sh - - msg 'Remove not working langs which need LC_ALL=C.UTF-8' - sed -e 's#en@cyrillic en@greek##g' -i "${srcdir}/grub-${pkgver}/po/LINGUAS" - - msg 'Avoid problem with unifont during compile of grub, http://savannah.gnu.org/bugs/?40330 and https://bugs.archlinux.org/task/37847' - cp "${srcdir}/unifont-${_UNIFONT_VER}.bdf" "${srcdir}/grub-${pkgver}/unifont.bdf" -} - -_build_grub-uboot_am335x-bone() { - msg "Copy the source for building the U-Boot (am335x-bone) part" - cp -r "${srcdir}/grub-${pkgver}" "${srcdir}/grub-${pkgver}-uboot_am335x-bone" - cd "${srcdir}/grub-${pkgver}-uboot_am335x-bone/" - - msg 'Patch to detect am335x-bone device tree blob file (dtb)' - patch -Np1 -i "${srcdir}/grub-10_linux-20_linux_xen-detect-am335x_bone+am335x_boneblack-devicetree-file.patch" - - msg 'change memory adapted for am335x-bone support' - sed -i '\|arm_uboot_ldflags| s|0x08000000|0x82000000| - \|GRUB_KERNEL_ARM_UBOOT_LINK_ADDR| s|0x08000000|0x82000000| - ' grub-core/Makefile.core.def \ - include/grub/offsets.h - #sed -i '\|LINUX_ADDRESS| s|start_of_ram [+] 0x8000|0x82000000| - # \|LINUX_INITRD_ADDRESS| s|start_of_ram [+] 0x02000000|0x88080000| - # \|LINUX_FDT_ADDRESS| s|LINUX_INITRD_ADDRESS [-] 0x10000|0x88000000| - # ' include/grub/arm/linux.h - sed -i '\|grub_arm_disable_caches_mmu|,+4 d - ' grub-core/loader/arm/linux.c - - msg 'Unset all compiler FLAGS for U-Boot (am335x-bone) build' - unset CFLAGS - unset CPPFLAGS - unset CXXFLAGS - unset LDFLAGS - unset MAKEFLAGS - - cd "${srcdir}/grub-${pkgver}-uboot_am335x-bone/" - - msg 'Run autogen.sh for U-Boot (am335x-bone) build' - ./autogen.sh - - msg 'Run ./configure for U-Boot (am335x-bone) build' - ./configure \ - --with-platform='uboot' \ - --target='arm' \ - --disable-efiemu \ - --enable-mm-debug \ - --enable-nls \ - --enable-device-mapper \ - --enable-cache-stats \ - --enable-boot-time \ - --enable-grub-mkfont \ - --enable-grub-mount \ - --prefix='/usr' \ - --bindir='/usr/bin' \ - --sbindir='/usr/bin' \ - --mandir='/usr/share/man' \ - --infodir='/usr/share/info' \ - --datarootdir='/usr/share' \ - --sysconfdir='/etc' \ - --program-prefix='' \ - --with-bootdir='/boot' \ - --with-grubdir='grub' \ - --disable-silent-rules \ - --disable-werror - - msg 'Run make for U-Boot (am335x-bone) build' - make -} - -_build_grub-uboot_omap3_beagle() { - msg "Copy the source for building the U-Boot (omap3_beagle) part" - cp -r "${srcdir}/grub-${pkgver}" "${srcdir}/grub-${pkgver}-uboot_omap3_beagle" - cd "${srcdir}/grub-${pkgver}-uboot_omap3_beagle/" - - msg 'Patch to detect omap3_beagle device tree blob file (dtb)' - patch -Np1 -i "${srcdir}/grub-10_linux-20_linux_xen-detect-omap3_beagle-devicetree-file.patch" - - msg 'change memory adapted for omap3_beagle support' - sed -i '\|arm_uboot_ldflags| s|0x08000000|0x82000000| - \|GRUB_KERNEL_ARM_UBOOT_LINK_ADDR| s|0x08000000|0x82000000| - ' grub-core/Makefile.core.def \ - include/grub/offsets.h - #sed -i '\|LINUX_ADDRESS| s|start_of_ram [+] 0x8000|0x82000000| - # \|LINUX_INITRD_ADDRESS| s|start_of_ram [+] 0x02000000|0x88080000| - # \|LINUX_FDT_ADDRESS| s|LINUX_INITRD_ADDRESS [-] 0x10000|0x88000000| - # ' include/grub/arm/linux.h - sed -i '\|grub_arm_disable_caches_mmu|,+4 d - ' grub-core/loader/arm/linux.c - - msg 'Unset all compiler FLAGS for U-Boot (omap3_beagle) build' - unset CFLAGS - unset CPPFLAGS - unset CXXFLAGS - unset LDFLAGS - unset MAKEFLAGS - - cd "${srcdir}/grub-${pkgver}-uboot_omap3_beagle/" - - msg 'Run autogen.sh for U-Boot (omap3_beagle) build' - ./autogen.sh - - msg 'Run ./configure for U-Boot (omap3_beagle) build' - ./configure \ - --with-platform='uboot' \ - --target='arm' \ - --disable-efiemu \ - --enable-mm-debug \ - --enable-nls \ - --enable-device-mapper \ - --enable-cache-stats \ - --enable-boot-time \ - --enable-grub-mkfont \ - --enable-grub-mount \ - --prefix='/usr' \ - --bindir='/usr/bin' \ - --sbindir='/usr/bin' \ - --mandir='/usr/share/man' \ - --infodir='/usr/share/info' \ - --datarootdir='/usr/share' \ - --sysconfdir='/etc' \ - --program-prefix='' \ - --with-bootdir='/boot' \ - --with-grubdir='grub' \ - --disable-silent-rules \ - --disable-werror - - msg 'Run make for U-Boot (omap3_beagle) build' - make -} - -_build_grub-uboot_omap3_beagle_xm() { - msg "Copy the source for building the U-Boot (omap3_beagle_xm) part" - cp -r "${srcdir}/grub-${pkgver}" "${srcdir}/grub-${pkgver}-uboot_omap3_beagle_xm" - cd "${srcdir}/grub-${pkgver}-uboot_omap3_beagle_xm/" - - msg 'Patch to detect omap3_beagle_xm device tree blob file (dtb)' - patch -Np1 -i "${srcdir}/grub-10_linux-20_linux_xen-detect-omap3_beagle_xm-devicetree-file.patch" - - msg 'change memory adapted for omap3_beagle_xm support' - sed -i '\|arm_uboot_ldflags| s|0x08000000|0x82000000| - \|GRUB_KERNEL_ARM_UBOOT_LINK_ADDR| s|0x08000000|0x82000000| - ' grub-core/Makefile.core.def \ - include/grub/offsets.h - #sed -i '\|LINUX_ADDRESS| s|start_of_ram [+] 0x8000|0x82000000| - # \|LINUX_INITRD_ADDRESS| s|start_of_ram [+] 0x02000000|0x88080000| - # \|LINUX_FDT_ADDRESS| s|LINUX_INITRD_ADDRESS [-] 0x10000|0x88000000| - # ' include/grub/arm/linux.h - sed -i '\|grub_arm_disable_caches_mmu|,+4 d - ' grub-core/loader/arm/linux.c - - msg 'Unset all compiler FLAGS for U-Boot (omap3_beagle_xm) build' - unset CFLAGS - unset CPPFLAGS - unset CXXFLAGS - unset LDFLAGS - unset MAKEFLAGS - - cd "${srcdir}/grub-${pkgver}-uboot_omap3_beagle_xm/" - - msg 'Run autogen.sh for U-Boot (omap3_beagle_xm) build' - ./autogen.sh - - msg 'Run ./configure for U-Boot (omap3_beagle_xm) build' - ./configure \ - --with-platform='uboot' \ - --target='arm' \ - --disable-efiemu \ - --enable-mm-debug \ - --enable-nls \ - --enable-device-mapper \ - --enable-cache-stats \ - --enable-boot-time \ - --enable-grub-mkfont \ - --enable-grub-mount \ - --prefix='/usr' \ - --bindir='/usr/bin' \ - --sbindir='/usr/bin' \ - --mandir='/usr/share/man' \ - --infodir='/usr/share/info' \ - --datarootdir='/usr/share' \ - --sysconfdir='/etc' \ - --program-prefix='' \ - --with-bootdir='/boot' \ - --with-grubdir='grub' \ - --disable-silent-rules \ - --disable-werror - - msg 'Run make for U-Boot (omap3_beagle_xm) build' - make -} - -_build_grub-uboot_omap3_beagle_xm_ab() { - msg "Copy the source for building the U-Boot (omap3_beagle_xm_ab) part" - cp -r "${srcdir}/grub-${pkgver}" "${srcdir}/grub-${pkgver}-uboot_omap3_beagle_xm_ab" - cd "${srcdir}/grub-${pkgver}-uboot_omap3_beagle_xm_ab/" - - msg 'Patch to detect omap3_beagle_xm_ab device tree blob file (dtb)' - patch -Np1 -i "${srcdir}/grub-10_linux-20_linux_xen-detect-omap3_beagle_xm_ab-devicetree-file.patch" - - msg 'change memory adapted for omap3_beagle_xm_ab support' - sed -i '\|arm_uboot_ldflags| s|0x08000000|0x82000000| - \|GRUB_KERNEL_ARM_UBOOT_LINK_ADDR| s|0x08000000|0x82000000| - ' grub-core/Makefile.core.def \ - include/grub/offsets.h - #sed -i '\|LINUX_ADDRESS| s|start_of_ram [+] 0x8000|0x82000000| - # \|LINUX_INITRD_ADDRESS| s|start_of_ram [+] 0x02000000|0x88080000| - # \|LINUX_FDT_ADDRESS| s|LINUX_INITRD_ADDRESS [-] 0x10000|0x88000000| - # ' include/grub/arm/linux.h - sed -i '\|grub_arm_disable_caches_mmu|,+4 d - ' grub-core/loader/arm/linux.c - - msg 'Unset all compiler FLAGS for U-Boot (omap3_beagle_xm_ab) build' - unset CFLAGS - unset CPPFLAGS - unset CXXFLAGS - unset LDFLAGS - unset MAKEFLAGS - - cd "${srcdir}/grub-${pkgver}-uboot_omap3_beagle_xm_ab/" - - msg 'Run autogen.sh for U-Boot (omap3_beagle_xm_ab) build' - ./autogen.sh - - msg 'Run ./configure for U-Boot (omap3_beagle_xm_ab) build' - ./configure \ - --with-platform='uboot' \ - --target='arm' \ - --disable-efiemu \ - --enable-mm-debug \ - --enable-nls \ - --enable-device-mapper \ - --enable-cache-stats \ - --enable-boot-time \ - --enable-grub-mkfont \ - --enable-grub-mount \ - --prefix='/usr' \ - --bindir='/usr/bin' \ - --sbindir='/usr/bin' \ - --mandir='/usr/share/man' \ - --infodir='/usr/share/info' \ - --datarootdir='/usr/share' \ - --sysconfdir='/etc' \ - --program-prefix='' \ - --with-bootdir='/boot' \ - --with-grubdir='grub' \ - --disable-silent-rules \ - --disable-werror - - msg 'Run make for U-Boot (omap3_beagle_xm_ab) build' - make -} - -_build_grub-uboot_udoo() { - msg "Copy the source for building the U-Boot (udoo) part" - cp -r "${srcdir}/grub-${pkgver}" "${srcdir}/grub-${pkgver}-uboot_udoo" - cd "${srcdir}/grub-${pkgver}-uboot_udoo/" - - msg 'Patch to detect udoo device tree blob file (dtb)' - patch -Np1 -i "${srcdir}/grub-10_linux-20_linux_xen-detect-udoo-devicetree-file.patch" - - msg 'change memory adapted for udoo support' - sed -i '\|arm_uboot_ldflags| s|0x08000000|0x12000000| - \|GRUB_KERNEL_ARM_UBOOT_LINK_ADDR| s|0x08000000|0x12000000| - ' grub-core/Makefile.core.def \ - include/grub/offsets.h - #sed -i '\|LINUX_ADDRESS| s|start_of_ram [+] 0x8000|0x12000000| - # \|LINUX_INITRD_ADDRESS| s|start_of_ram [+] 0x02000000|0x12A00000| - # \|LINUX_FDT_ADDRESS| s|LINUX_INITRD_ADDRESS [-] 0x10000|0x18000000| - # ' include/grub/arm/linux.h - sed -i '\|grub_arm_disable_caches_mmu|,+4 d - ' grub-core/loader/arm/linux.c - - msg 'Unset all compiler FLAGS for U-Boot (udoo) build' - unset CFLAGS - unset CPPFLAGS - unset CXXFLAGS - unset LDFLAGS - unset MAKEFLAGS - - cd "${srcdir}/grub-${pkgver}-uboot_udoo/" - - msg 'Run autogen.sh for U-Boot (udoo) build' - ./autogen.sh - - msg 'Run ./configure for U-Boot (udoo) build' - ./configure \ - --with-platform='uboot' \ - --target='arm' \ - --disable-efiemu \ - --enable-mm-debug \ - --enable-nls \ - --enable-device-mapper \ - --enable-cache-stats \ - --enable-boot-time \ - --enable-grub-mkfont \ - --enable-grub-mount \ - --prefix='/usr' \ - --bindir='/usr/bin' \ - --sbindir='/usr/bin' \ - --mandir='/usr/share/man' \ - --infodir='/usr/share/info' \ - --datarootdir='/usr/share' \ - --sysconfdir='/etc' \ - --program-prefix='' \ - --with-bootdir='/boot' \ - --with-grubdir='grub' \ - --disable-silent-rules \ - --disable-werror - - msg 'Run make for U-Boot (udoo) build' - make -} - -build() { - cd "${srcdir}/grub-${pkgver}/" - - msg 'Build grub U-Boot for BeagleBone and BeagleBone Black (am335x-bone) stuff' - _build_grub-uboot_am335x-bone - - msg 'Build grub U-Boot for BeagleBoard (omap3_beagle) stuff' - _build_grub-uboot_omap3_beagle - - msg 'Build grub U-Boot for BeagleBoard-xM (omap3_beagle_xm) stuff' - _build_grub-uboot_omap3_beagle_xm - - msg 'Build grub U-Boot for BeagleBoard-xM rev A/B (omap3_beagle_xm_ab) stuff' - _build_grub-uboot_omap3_beagle_xm_ab - - msg 'Build grub U-Boot for UDOO (udoo) stuff' - _build_grub-uboot_udoo -} - -package_grub-am335x_bone-git() { - pkgdesc='GNU GRand Unified Bootloader (2) for BeagleBone and BeagleBone Black (am335x-bone), (Parabola rebranded)' - provides=('grub-am335x_bone') - conflicts=('grub-am335x_bone') - - cd "${srcdir}/grub-${pkgver}-uboot_am335x-bone/" - - msg 'Package grub U-Boot stuff' - - msg 'Run make install for U-Boot build' - make DESTDIR="${pkgdir}/" bashcompletiondir="/usr/share/bash-completion/completions" install - - msg 'Remove gdb debugging related files for U-Boot build' - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/*.module || true - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/*.image || true - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/{kernel.exec,gdb_grub,gmodule.pl} || true - - msg 'Install /etc/default/grub (used by grub-mkconfig)' - install -D -m0644 "${srcdir}/grub.default" "${pkgdir}/etc/default/grub" -} - -package_grub-omap3_beagle-git() { - pkgdesc='GNU GRand Unified Bootloader (2) for BeagleBoard (omap3_beagle), (Parabola rebranded)' - provides=('grub-beagleboard' 'grub-omap3_beagle') - conflicts=('grub-omap3_beagle') - - cd "${srcdir}/grub-${pkgver}-uboot_omap3_beagle/" - - msg 'Package grub U-Boot stuff' - - msg 'Run make install for U-Boot build' - make DESTDIR="${pkgdir}/" bashcompletiondir="/usr/share/bash-completion/completions" install - - msg 'Remove gdb debugging related files for U-Boot build' - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/*.module || true - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/*.image || true - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/{kernel.exec,gdb_grub,gmodule.pl} || true - - msg 'Install /etc/default/grub (used by grub-mkconfig)' - install -D -m0644 "${srcdir}/grub.default" "${pkgdir}/etc/default/grub" -} - -package_grub-omap3_beagle_xm-git() { - pkgdesc='GNU GRand Unified Bootloader (2) for BeagleBoard-xM (omap3_beagle_xm), (Parabola rebranded)' - provides=('grub-beagleboard' 'grub-omap3_beagle_xm') - conflicts=('grub-omap3_beagle_xm') - - cd "${srcdir}/grub-${pkgver}-uboot_omap3_beagle_xm/" - - msg 'Package grub U-Boot stuff' - - msg 'Run make install for U-Boot build' - make DESTDIR="${pkgdir}/" bashcompletiondir="/usr/share/bash-completion/completions" install - - msg 'Remove gdb debugging related files for U-Boot build' - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/*.module || true - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/*.image || true - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/{kernel.exec,gdb_grub,gmodule.pl} || true - - msg 'Install /etc/default/grub (used by grub-mkconfig)' - install -D -m0644 "${srcdir}/grub.default" "${pkgdir}/etc/default/grub" -} - -package_grub-omap3_beagle_xm_ab-git() { - pkgdesc='GNU GRand Unified Bootloader (2) for BeagleBoard-xM rev A/B (omap3_beagle_xm_ab), (Parabola rebranded)' - provides=('grub-beagleboard' 'grub-omap3_beagle_xm_ab') - conflicts=('grub-omap3_beagle_xm_ab') - - cd "${srcdir}/grub-${pkgver}-uboot_omap3_beagle_xm_ab/" - - msg 'Package grub U-Boot stuff' - - msg 'Run make install for U-Boot build' - make DESTDIR="${pkgdir}/" bashcompletiondir="/usr/share/bash-completion/completions" install - - msg 'Remove gdb debugging related files for U-Boot build' - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/*.module || true - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/*.image || true - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/{kernel.exec,gdb_grub,gmodule.pl} || true - - msg 'Install /etc/default/grub (used by grub-mkconfig)' - install -D -m0644 "${srcdir}/grub.default" "${pkgdir}/etc/default/grub" -} - -package_grub-udoo-git() { - pkgdesc='GNU GRand Unified Bootloader (2) for UDOO (udoo), (Parabola rebranded)' - provides=('grub-udoo') - conflicts=('grub-udoo') - - cd "${srcdir}/grub-${pkgver}-uboot_udoo/" - - msg 'Package grub U-Boot stuff' - - msg 'Run make install for U-Boot build' - make DESTDIR="${pkgdir}/" bashcompletiondir="/usr/share/bash-completion/completions" install - - msg 'Remove gdb debugging related files for U-Boot build' - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/*.module || true - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/*.image || true - rm -f "${pkgdir}/usr/lib/grub/arm-uboot"/{kernel.exec,gdb_grub,gmodule.pl} || true - - msg 'Install /etc/default/grub (used by grub-mkconfig)' - install -D -m0644 "${srcdir}/grub.default" "${pkgdir}/etc/default/grub" -} diff --git a/libre/grub-git/grub-10_linux-20_linux_xen-detect-am335x_bone+-devicetree-file.patch b/libre/grub-git/grub-10_linux-20_linux_xen-detect-am335x_bone+-devicetree-file.patch deleted file mode 100644 index b620a39d0..000000000 --- a/libre/grub-git/grub-10_linux-20_linux_xen-detect-am335x_bone+-devicetree-file.patch +++ /dev/null @@ -1,92 +0,0 @@ -diff -Nur a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in ---- a/util/grub.d/10_linux.in 2015-10-16 08:28:56.901970897 -0300 -+++ b/util/grub.d/10_linux.in 2015-10-16 08:30:45.112786124 -0300 -@@ -139,6 +139,25 @@ - initrd ${rel_dirname}/${initrd} - EOF - fi -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-bone.dtb -+EOF -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb -+EOF -+ fi -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -222,6 +241,16 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-bone.dtb" >&2 -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-boneblack.dtb" >&2 -+ fi -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" -diff -Nur a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in ---- a/util/grub.d/20_linux_xen.in 2015-10-16 08:28:56.901970897 -0300 -+++ b/util/grub.d/20_linux_xen.in 2015-10-16 08:31:03.152921373 -0300 -@@ -132,6 +132,25 @@ - module --nounzip ${rel_dirname}/${initrd} - EOF - fi -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-bone.dtb -+EOF -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb -+EOF -+ fi -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -235,6 +254,16 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-bone.dtb" >&2 -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-boneblack.dtb" >&2 -+ fi -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" "${xen_version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" diff --git a/libre/grub-git/grub-10_linux-20_linux_xen-detect-am335x_bone+am335x_boneblack-devicetree-file.patch b/libre/grub-git/grub-10_linux-20_linux_xen-detect-am335x_bone+am335x_boneblack-devicetree-file.patch deleted file mode 100644 index b620a39d0..000000000 --- a/libre/grub-git/grub-10_linux-20_linux_xen-detect-am335x_bone+am335x_boneblack-devicetree-file.patch +++ /dev/null @@ -1,92 +0,0 @@ -diff -Nur a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in ---- a/util/grub.d/10_linux.in 2015-10-16 08:28:56.901970897 -0300 -+++ b/util/grub.d/10_linux.in 2015-10-16 08:30:45.112786124 -0300 -@@ -139,6 +139,25 @@ - initrd ${rel_dirname}/${initrd} - EOF - fi -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-bone.dtb -+EOF -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb -+EOF -+ fi -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -222,6 +241,16 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-bone.dtb" >&2 -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-boneblack.dtb" >&2 -+ fi -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" -diff -Nur a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in ---- a/util/grub.d/20_linux_xen.in 2015-10-16 08:28:56.901970897 -0300 -+++ b/util/grub.d/20_linux_xen.in 2015-10-16 08:31:03.152921373 -0300 -@@ -132,6 +132,25 @@ - module --nounzip ${rel_dirname}/${initrd} - EOF - fi -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-bone.dtb -+EOF -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb -+EOF -+ fi -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -235,6 +254,16 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-bone.dtb" >&2 -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-boneblack.dtb" >&2 -+ fi -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" "${xen_version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" diff --git a/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle+-devicetree-file.patch b/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle+-devicetree-file.patch deleted file mode 100644 index b620a39d0..000000000 --- a/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle+-devicetree-file.patch +++ /dev/null @@ -1,92 +0,0 @@ -diff -Nur a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in ---- a/util/grub.d/10_linux.in 2015-10-16 08:28:56.901970897 -0300 -+++ b/util/grub.d/10_linux.in 2015-10-16 08:30:45.112786124 -0300 -@@ -139,6 +139,25 @@ - initrd ${rel_dirname}/${initrd} - EOF - fi -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-bone.dtb -+EOF -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb -+EOF -+ fi -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -222,6 +241,16 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-bone.dtb" >&2 -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-boneblack.dtb" >&2 -+ fi -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" -diff -Nur a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in ---- a/util/grub.d/20_linux_xen.in 2015-10-16 08:28:56.901970897 -0300 -+++ b/util/grub.d/20_linux_xen.in 2015-10-16 08:31:03.152921373 -0300 -@@ -132,6 +132,25 @@ - module --nounzip ${rel_dirname}/${initrd} - EOF - fi -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-bone.dtb -+EOF -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree file ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/am335x-boneblack.dtb -+EOF -+ fi -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -235,6 +254,16 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BONE' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-bone.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-bone.dtb" >&2 -+ fi -+ elif [ "$(cat /sys/devices/platform/bone_capemgr/baseboard/board-name)" = 'A335BNLT' ]; then -+ if test -f "${dirname}/dtbs/${version}/am335x-boneblack.dtb" ; then -+ gettext_printf "Found device tree file: %s\n" "${dirname}/dtbs/${version}/am335x-boneblack.dtb" >&2 -+ fi -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" "${xen_version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" diff --git a/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle-devicetree-file.patch b/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle-devicetree-file.patch deleted file mode 100644 index 0e5bc382a..000000000 --- a/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle-devicetree-file.patch +++ /dev/null @@ -1,58 +0,0 @@ -diff -Nur a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in ---- a/util/grub.d/10_linux.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/10_linux.in 2015-09-27 18:43:26.911364096 -0300 -@@ -139,6 +139,14 @@ - initrd ${rel_dirname}/${initrd} - EOF - fi -+ if test -d "${rel_dirname}/dtbs/${version}/omap3-beagle.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree path ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/omap3-beagle.dtb -+EOF -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -222,6 +230,10 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if test -d "${dirname}/dtbs/${version}/omap3-beagle.dtb" ; then -+ gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/omap3-beagle.dtb" >&2 -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" -diff -Nur a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in ---- a/util/grub.d/20_linux_xen.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/20_linux_xen.in 2015-09-27 18:47:34.953427471 -0300 -@@ -132,6 +132,14 @@ - module --nounzip ${rel_dirname}/${initrd} - EOF - fi -+ if test -d "${rel_dirname}/dtbs/${version}/omap3-beagle.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree path ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/omap3-beagle.dtb -+EOF -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -235,6 +243,10 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if test -d "${dirname}/dtbs/${version}/omap3-beagle.dtb" ; then -+ gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/omap3-beagle.dtb" >&2 -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" "${xen_version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" diff --git a/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle_xm-devicetree-file.patch b/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle_xm-devicetree-file.patch deleted file mode 100644 index 387ebbcc5..000000000 --- a/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle_xm-devicetree-file.patch +++ /dev/null @@ -1,58 +0,0 @@ -diff -Nur a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in ---- a/util/grub.d/10_linux.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/10_linux.in 2015-09-27 18:43:26.911364096 -0300 -@@ -139,6 +139,14 @@ - initrd ${rel_dirname}/${initrd} - EOF - fi -+ if test -d "${rel_dirname}/dtbs/${version}/omap3-beagle-xm.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree path ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/omap3-beagle-xm.dtb -+EOF -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -222,6 +230,10 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if test -d "${dirname}/dtbs/${version}/omap3-beagle-xm.dtb" ; then -+ gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/omap3-beagle-xm.dtb" >&2 -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" -diff -Nur a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in ---- a/util/grub.d/20_linux_xen.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/20_linux_xen.in 2015-09-27 18:47:34.953427471 -0300 -@@ -132,6 +132,14 @@ - module --nounzip ${rel_dirname}/${initrd} - EOF - fi -+ if test -d "${rel_dirname}/dtbs/${version}/omap3-beagle-xm.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree path ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/omap3-beagle-xm.dtb -+EOF -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -235,6 +243,10 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if test -d "${dirname}/dtbs/${version}/omap3-beagle-xm.dtb" ; then -+ gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/omap3-beagle-xm.dtb" >&2 -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" "${xen_version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" diff --git a/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle_xm_ab-devicetree-file.patch b/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle_xm_ab-devicetree-file.patch deleted file mode 100644 index 31b59890e..000000000 --- a/libre/grub-git/grub-10_linux-20_linux_xen-detect-omap3_beagle_xm_ab-devicetree-file.patch +++ /dev/null @@ -1,58 +0,0 @@ -diff -Nur a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in ---- a/util/grub.d/10_linux.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/10_linux.in 2015-09-27 18:43:26.911364096 -0300 -@@ -139,6 +139,14 @@ - initrd ${rel_dirname}/${initrd} - EOF - fi -+ if test -d "${rel_dirname}/dtbs/${version}/omap3-beagle-xm-ab.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree path ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/omap3-beagle-xm-ab.dtb -+EOF -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -222,6 +230,10 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if test -d "${dirname}/dtbs/${version}/omap3-beagle-xm-ab.dtb" ; then -+ gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/omap3-beagle-xm-ab.dtb" >&2 -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" -diff -Nur a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in ---- a/util/grub.d/20_linux_xen.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/20_linux_xen.in 2015-09-27 18:47:34.953427471 -0300 -@@ -132,6 +132,14 @@ - module --nounzip ${rel_dirname}/${initrd} - EOF - fi -+ if test -d "${rel_dirname}/dtbs/${version}/omap3-beagle-xm-ab.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree path ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/omap3-beagle-xm-ab.dtb -+EOF -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -235,6 +243,10 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if test -d "${dirname}/dtbs/${version}/omap3-beagle-xm-ab.dtb" ; then -+ gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/omap3-beagle-xm-ab.dtb" >&2 -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" "${xen_version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" diff --git a/libre/grub-git/grub-10_linux-20_linux_xen-detect-parabola-initramfs.patch b/libre/grub-git/grub-10_linux-20_linux_xen-detect-parabola-initramfs.patch deleted file mode 100644 index 8184871b5..000000000 --- a/libre/grub-git/grub-10_linux-20_linux_xen-detect-parabola-initramfs.patch +++ /dev/null @@ -1,126 +0,0 @@ -diff -Nur a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in ---- a/util/grub.d/10_linux.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/10_linux.in 2015-09-27 15:34:19.822404966 -0300 -@@ -80,9 +80,11 @@ - if [ x$type != xsimple ] ; then - case $type in - recovery) -- title="$(gettext_printf "%s, with Linux %s (recovery mode)" "${os}" "${version}")" ;; -+ title="$(gettext_printf "%s, %s kernel (recovery mode)" "${os}" "${version}")" ;; -+ fallback) -+ title="$(gettext_printf "%s, %s kernel (fallback initramfs)" "${os}" "${version}")" ;; - *) -- title="$(gettext_printf "%s, with Linux %s" "${os}" "${version}")" ;; -+ title="$(gettext_printf "%s, %s kernel" "${os}" "${version}")" ;; - esac - if [ x"$title" = x"$GRUB_ACTUAL_DEFAULT" ] || [ x"Previous Linux versions>$title" = x"$GRUB_ACTUAL_DEFAULT" ]; then - replacement_title="$(echo "Advanced options for ${OS}" | sed 's,>,>>,g')>$(echo "$title" | sed 's,>,>>,g')" -@@ -94,7 +96,7 @@ - else - echo "menuentry '$(echo "$os" | grub_quote)' ${CLASS} \$menuentry_id_option 'gnulinux-simple-$boot_device_id' {" | sed "s/^/$submenu_indentation/" - fi -- if [ x$type != xrecovery ] ; then -+ if [ x$type != xrecovery ] && [ x$type != xfallback ] ; then - save_default_entry | grub_add_tab - fi - -@@ -126,7 +128,7 @@ - fi - printf '%s\n' "${prepare_boot_cache}" | sed "s/^/$submenu_indentation/" - fi -- message="$(gettext_printf "Loading Linux %s ..." ${version})" -+ message="$(gettext_printf "Loading %s kernel ..." ${version})" - sed "s/^/$submenu_indentation/" << EOF - echo '$(echo "$message" | grub_quote)' - linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args} -@@ -182,7 +184,7 @@ - basename=`basename $linux` - dirname=`dirname $linux` - rel_dirname=`make_system_path_relative_to_its_root $dirname` -- version=`echo $basename | sed -e "s,^[^0-9]*-,,g"` -+ version=`echo $basename | sed -e "s,vmlinuz-,,g"` - alt_version=`echo $version | sed -e "s,\.old$,,g"` - linux_root_device_thisversion="${LINUX_ROOT_DEVICE}" - -@@ -238,6 +240,18 @@ - - linux_entry "${OS}" "${version}" advanced \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" -+ -+ if test -e "${dirname}/initramfs-${version}-fallback.img" ; then -+ initrd="initramfs-${version}-fallback.img" -+ -+ if test -n "${initrd}" ; then -+ gettext_printf "Found fallback initramfs image: %s\n" "${dirname}/${initrd}" >&2 -+ fi -+ -+ linux_entry "${OS}" "${version}" fallback \ -+ "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" -+ fi -+ - if [ "x${GRUB_DISABLE_RECOVERY}" != "xtrue" ]; then - linux_entry "${OS}" "${version}" recovery \ - "single ${GRUB_CMDLINE_LINUX}" -diff -Nur a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in ---- a/util/grub.d/20_linux_xen.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/20_linux_xen.in 2015-09-27 15:35:00.589739244 -0300 -@@ -88,9 +88,11 @@ - fi - if [ x$type != xsimple ] ; then - if [ x$type = xrecovery ] ; then -- title="$(gettext_printf "%s, with Xen %s and Linux %s (recovery mode)" "${os}" "${xen_version}" "${version}")" -+ title="$(gettext_printf "%s, with Xen %s and %s kernel (recovery mode)" "${os}" "${xen_version}" "${version}")" -+ elif [ x$type = xfallback ] ; then -+ title="$(gettext_printf "%s, with Xen %s and %s kernel (fallback initramfs)" "${os}" "${xen_version}" "${version}")" - else -- title="$(gettext_printf "%s, with Xen %s and Linux %s" "${os}" "${xen_version}" "${version}")" -+ title="$(gettext_printf "%s, with Xen %s and %s kernel" "${os}" "${xen_version}" "${version}")" - fi - replacement_title="$(echo "Advanced options for ${OS}" | sed 's,>,>>,g')>$(echo "$title" | sed 's,>,>>,g')" - if [ x"Xen ${xen_version}>$title" = x"$GRUB_ACTUAL_DEFAULT" ]; then -@@ -103,7 +105,7 @@ - title="$(gettext_printf "%s, with Xen hypervisor" "${os}")" - echo "menuentry '$(echo "$title" | grub_quote)' ${CLASS} \$menuentry_id_option 'xen-gnulinux-simple-$boot_device_id' {" | sed "s/^/$submenu_indentation/" - fi -- if [ x$type != xrecovery ] ; then -+ if [ x$type != xrecovery ] && [ x$type != xfallback ] ; then - save_default_entry | grub_add_tab | sed "s/^/$submenu_indentation/" - fi - -@@ -112,7 +114,7 @@ - fi - printf '%s\n' "${prepare_boot_cache}" | sed "s/^/$submenu_indentation/" - xmessage="$(gettext_printf "Loading Xen %s ..." ${xen_version})" -- lmessage="$(gettext_printf "Loading Linux %s ..." ${version})" -+ lmessage="$(gettext_printf "Loading %s kernel ..." ${version})" - sed "s/^/$submenu_indentation/" << EOF - echo '$(echo "$xmessage" | grub_quote)' - if [ "\$grub_platform" = "pc" -o "\$grub_platform" = "" ]; then -@@ -210,7 +212,7 @@ - basename=`basename $linux` - dirname=`dirname $linux` - rel_dirname=`make_system_path_relative_to_its_root $dirname` -- version=`echo $basename | sed -e "s,^[^0-9]*-,,g"` -+ version=`echo $basename | sed -e "s,vmlinuz-,,g"` - alt_version=`echo $version | sed -e "s,\.old$,,g"` - linux_root_device_thisversion="${LINUX_ROOT_DEVICE}" - -@@ -252,6 +254,18 @@ - - linux_entry "${OS}" "${version}" "${xen_version}" advanced \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" -+ -+ if test -e "${dirname}/initramfs-${version}-fallback.img" ; then -+ initrd="initramfs-${version}-fallback.img" -+ -+ if test -n "${initrd}" ; then -+ gettext_printf "Found fallback initramfs image: %s\n" "${dirname}/${initrd}" >&2 -+ fi -+ -+ linux_entry "${OS}" "${version}" "${xen_version}" fallback \ -+ "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" -+ fi -+ - if [ "x${GRUB_DISABLE_RECOVERY}" != "xtrue" ]; then - linux_entry "${OS}" "${version}" "${xen_version}" recovery \ - "single ${GRUB_CMDLINE_LINUX}" "${GRUB_CMDLINE_XEN}" diff --git a/libre/grub-git/grub-10_linux-20_linux_xen-detect-udoo-devicetree-file.patch b/libre/grub-git/grub-10_linux-20_linux_xen-detect-udoo-devicetree-file.patch deleted file mode 100644 index 7cd6be6b4..000000000 --- a/libre/grub-git/grub-10_linux-20_linux_xen-detect-udoo-devicetree-file.patch +++ /dev/null @@ -1,58 +0,0 @@ -diff -Nur a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in ---- a/util/grub.d/10_linux.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/10_linux.in 2015-09-27 18:43:26.911364096 -0300 -@@ -139,6 +139,14 @@ - initrd ${rel_dirname}/${initrd} - EOF - fi -+ if test -d "${rel_dirname}/dtbs/${version}/imx6q-udoo.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree path ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/imx6q-udoo.dtb -+EOF -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -222,6 +230,10 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if test -d "${dirname}/dtbs/${version}/imx6q-udoo.dtb" ; then -+ gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/imx6q-udoo.dtb" >&2 -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" -diff -Nur a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in ---- a/util/grub.d/20_linux_xen.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/20_linux_xen.in 2015-09-27 18:47:34.953427471 -0300 -@@ -132,6 +132,14 @@ - module --nounzip ${rel_dirname}/${initrd} - EOF - fi -+ if test -d "${rel_dirname}/dtbs/${version}/imx6q-udoo.dtb" ; then -+ # TRANSLATORS: Device tree path isn't identifier. Should be translated. -+ message="$(gettext_printf "Loading devices tree path ...")" -+ sed "s/^/$submenu_indentation/" << EOF -+ echo '$(echo "$message" | grub_quote)' -+ devicetree ${rel_dirname}/dtbs/${version}/imx6q-udoo.dtb -+EOF -+ fi - sed "s/^/$submenu_indentation/" << EOF - } - EOF -@@ -235,6 +243,10 @@ - linux_root_device_thisversion=${GRUB_DEVICE} - fi - -+ if test -d "${dirname}/dtbs/${version}/imx6q-udoo.dtb" ; then -+ gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/imx6q-udoo.dtb" >&2 -+ fi -+ - if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then - linux_entry "${OS}" "${version}" "${xen_version}" simple \ - "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" diff --git a/libre/grub-git/grub-10_linux-20_linux_xen-rebrand-free-distros.patch b/libre/grub-git/grub-10_linux-20_linux_xen-rebrand-free-distros.patch deleted file mode 100644 index 47added0d..000000000 --- a/libre/grub-git/grub-10_linux-20_linux_xen-rebrand-free-distros.patch +++ /dev/null @@ -1,44 +0,0 @@ -diff -Nur a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in ---- a/util/grub.d/10_linux.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/10_linux.in 2015-09-27 14:58:23.533917184 -0300 -@@ -31,7 +31,17 @@ - if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then - OS=GNU/Linux - else -- OS="${GRUB_DISTRIBUTOR} GNU/Linux" -+ if echo ${GRUB_DISTRIBUTOR} | grep -qi Parabola ; then -+ OS="${GRUB_DISTRIBUTOR} GNU/Linux-libre" -+ elif echo ${GRUB_DISTRIBUTOR} | grep -qi Blag ; then -+ OS="${GRUB_DISTRIBUTOR} Linux and GNU" -+ elif echo ${GRUB_DISTRIBUTOR} | grep -qi Musix ; then -+ OS="${GRUB_DISTRIBUTOR} GNU+Linux" -+ elif echo ${GRUB_DISTRIBUTOR} | grep -qi Dragora ; then -+ OS="${GRUB_DISTRIBUTOR} GNU/Linux-libre" -+ else -+ OS="${GRUB_DISTRIBUTOR} GNU/Linux" -+ fi - CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1|LC_ALL=C sed 's,[^[:alnum:]_],_,g') ${CLASS}" - fi - -diff -Nur a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in ---- a/util/grub.d/20_linux_xen.in 2015-09-27 14:14:45.544730230 -0300 -+++ b/util/grub.d/20_linux_xen.in 2015-09-27 14:59:16.319319658 -0300 -@@ -31,7 +31,17 @@ - if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then - OS=GNU/Linux - else -- OS="${GRUB_DISTRIBUTOR} GNU/Linux" -+ if echo ${GRUB_DISTRIBUTOR} | grep -qi Parabola ; then -+ OS="${GRUB_DISTRIBUTOR} GNU/Linux-libre" -+ elif echo ${GRUB_DISTRIBUTOR} | grep -qi Blag ; then -+ OS="${GRUB_DISTRIBUTOR} Linux and GNU" -+ elif echo ${GRUB_DISTRIBUTOR} | grep -qi Musix ; then -+ OS="${GRUB_DISTRIBUTOR} GNU+Linux" -+ elif echo ${GRUB_DISTRIBUTOR} | grep -qi Dragora ; then -+ OS="${GRUB_DISTRIBUTOR} GNU/Linux-libre" -+ else -+ OS="${GRUB_DISTRIBUTOR} GNU/Linux" -+ fi - CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1|LC_ALL=C sed 's,[^[:alnum:]_],_,g') ${CLASS}" - fi - diff --git a/libre/grub-git/grub-2.00-fix-docs.patch b/libre/grub-git/grub-2.00-fix-docs.patch deleted file mode 100644 index 0aa481154..000000000 --- a/libre/grub-git/grub-2.00-fix-docs.patch +++ /dev/null @@ -1,21 +0,0 @@ -From 40d6b00fa48ae9c1cecf143da5c6061f6ffcb719 Mon Sep 17 00:00:00 2001 -From: Ray Strode <rstrode@redhat.com -Date: Tue, 12 Mar 2013 15:23:02 -0400 -Subject: [PATCH] Fix docs - -I think the doc generation tools got stricter, so fix up the .texi file -to work. - -diff --git a/docs/grub-dev.texi b/docs/grub-dev.texi ---- a/docs/grub-dev.texi -+++ b/docs/grub-dev.texi -@@ -1394,8 +1394,8 @@ grub_video_blit_glyph (&glyph, color, 0, - - @node Bitmap API - @section Bitmap API --@itemize - @subsection grub_video_bitmap_create -+@itemize - @item Prototype: - @example - grub_err_t grub_video_bitmap_create (struct grub_video_bitmap **bitmap, unsigned int width, unsigned int height, enum grub_video_blit_format blit_format) diff --git a/libre/grub-git/grub-2.00-mkinitcpio-0.15.patch b/libre/grub-git/grub-2.00-mkinitcpio-0.15.patch deleted file mode 100644 index 1af848fa3..000000000 --- a/libre/grub-git/grub-2.00-mkinitcpio-0.15.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- util/grub.d/10_linux.in.old 2013-07-28 08:55:47.825946239 +0200 -+++ util/grub.d/10_linux.in 2013-07-28 08:56:14.082201512 +0200 -@@ -138,7 +138,7 @@ - message="$(gettext_printf "Loading Linux %s ..." "${version}")" - sed "s/^/$submenu_indentation/" << EOF - echo '$(echo "$message" | grub_quote)' -- linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args} -+ linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} rw ${args} - EOF - if test -n "${initrd}" ; then - # TRANSLATORS: ramdisk isn't identifier. Should be translated. diff --git a/libre/grub-git/grub-2.00.5086-fix-lvm-parsing.patch b/libre/grub-git/grub-2.00.5086-fix-lvm-parsing.patch deleted file mode 100644 index 9a2eb3ff7..000000000 --- a/libre/grub-git/grub-2.00.5086-fix-lvm-parsing.patch +++ /dev/null @@ -1,54 +0,0 @@ -There is no explicit option to turn off alignment; it is implicitly -disabled if one of --separator or --nameprefixes option is used. - ---separator was added in 2007, --nameprefixes - in 2009. So let's use ---separator to extend range of versions we are compatible with. Note that -one or another must be used, current parsing is broken otherwise. - -Signed-off-by: Andrey Borzenkov <address@hidden> - ---- - util/getroot.c | 12 +++++++++--- - 1 file changed, 9 insertions(+), 3 deletions(-) - -diff --git a/util/getroot.c b/util/getroot.c -index 2ad8a55..3afcf96 100644 ---- a/util/getroot.c -+++ b/util/getroot.c -@@ -1322,7 +1322,7 @@ grub_util_get_dev_abstraction (const char *os_dev) - static void - pull_lvm_by_command (const char *os_dev) - { -- char *argv[6]; -+ char *argv[8]; - int fd; - pid_t pid; - FILE *mdadm; -@@ -1351,12 +1351,17 @@ pull_lvm_by_command (const char *os_dev) - - /* execvp has inconvenient types, hence the casts. None of these - strings will actually be modified. */ -+ /* by default PV name is left aligned in 10 character field, meaning that -+ we do not know where name ends. Using dummy --separator disables -+ alignment. We have a single field, so separator itself is not output */ - argv[0] = (char *) "vgs"; - argv[1] = (char *) "--options"; - argv[2] = (char *) "pv_name"; - argv[3] = (char *) "--noheadings"; -- argv[4] = vgname; -- argv[5] = NULL; -+ argv[4] = (char *) "--separator"; -+ argv[5] = (char *) ":"; -+ argv[6] = vgname; -+ argv[7] = NULL; - - pid = exec_pipe (argv, &fd); - free (vgname); -@@ -1376,6 +1381,7 @@ pull_lvm_by_command (const char *os_dev) - while (getline (&buf, &len, mdadm) > 0) - { - char *ptr; -+ /* LVM adds two spaces as standard prefix */ - for (ptr = buf; ptr < buf + 2 && *ptr == ' '; ptr++); - if (*ptr == '\0') - continue; diff --git a/libre/grub-git/grub-add-GRUB_COLOR_variables.patch b/libre/grub-git/grub-add-GRUB_COLOR_variables.patch deleted file mode 100644 index c113a81d5..000000000 --- a/libre/grub-git/grub-add-GRUB_COLOR_variables.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff --git a/util/grub-mkconfig.in b/util/grub-mkconfig.in -index 3390ba9..c416489 100644 ---- a/util/grub-mkconfig.in -+++ b/util/grub-mkconfig.in -@@ -218,6 +218,8 @@ export GRUB_DEFAULT \ - GRUB_THEME \ - GRUB_GFXPAYLOAD_LINUX \ - GRUB_DISABLE_OS_PROBER \ -+ GRUB_COLOR_NORMAL \ -+ GRUB_COLOR_HIGHLIGHT \ - GRUB_INIT_TUNE \ - GRUB_SAVEDEFAULT \ - GRUB_ENABLE_CRYPTODISK \ -diff --git a/util/grub.d/00_header.in b/util/grub.d/00_header.in -index d2e7252..8259f45 100644 ---- a/util/grub.d/00_header.in -+++ b/util/grub.d/00_header.in -@@ -125,6 +125,14 @@ cat <<EOF - - EOF - -+if [ x$GRUB_COLOR_NORMAL != x ] && [ x$GRUB_COLOR_HIGHLIGHT != x ] ; then -+ cat << EOF -+set menu_color_normal=$GRUB_COLOR_NORMAL -+set menu_color_highlight=$GRUB_COLOR_HIGHLIGHT -+ -+EOF -+fi -+ - serial=0; - gfxterm=0; - for x in ${GRUB_TERMINAL_INPUT} ${GRUB_TERMINAL_OUTPUT}; do diff --git a/libre/grub-git/grub.default b/libre/grub-git/grub.default deleted file mode 100644 index 56585a47d..000000000 --- a/libre/grub-git/grub.default +++ /dev/null @@ -1,50 +0,0 @@ -GRUB_DEFAULT=0 -GRUB_TIMEOUT=5 -GRUB_DISTRIBUTOR="Parabola" -GRUB_CMDLINE_LINUX_DEFAULT="quiet" -GRUB_CMDLINE_LINUX="" - -# Preload both GPT and MBR modules so that they are not missed -GRUB_PRELOAD_MODULES="part_gpt part_msdos" - -# Uncomment to enable Hidden Menu, and optionally hide the timeout count -#GRUB_HIDDEN_TIMEOUT=5 -#GRUB_HIDDEN_TIMEOUT_QUIET=true - -# Uncomment to use basic console -GRUB_TERMINAL_INPUT=console - -# Uncomment to disable graphical terminal -#GRUB_TERMINAL_OUTPUT=console - -# The resolution used on graphical terminal -# note that you can use only modes which your graphic card supports via VBE -# you can see them in real GRUB with the command `vbeinfo' -GRUB_GFXMODE=auto - -# Uncomment to allow the kernel use the same resolution used by grub -GRUB_GFXPAYLOAD_LINUX=keep - -# Uncomment if you want GRUB to pass to the Linux kernel the old parameter -# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx" -#GRUB_DISABLE_LINUX_UUID=true - -# Uncomment to disable generation of recovery mode menu entries -GRUB_DISABLE_RECOVERY=true - -# Uncomment and set to the desired menu colors. Used by normal and wallpaper -# modes only. Entries specified as foreground/background. -GRUB_COLOR_NORMAL="magenta/black" -GRUB_COLOR_HIGHLIGHT="white/magenta" - -# Uncomment one of them for the gfx desired, a image background or a gfxtheme -#GRUB_BACKGROUND="/path/to/wallpaper" -#GRUB_THEME="/path/to/gfxtheme" - -# Uncomment to get a beep at GRUB start -#GRUB_INIT_TUNE="480 440 1" - -#GRUB_SAVEDEFAULT="true" - -# Disable advanced submenu -GRUB_DISABLE_SUBMENU="y" diff --git a/libre/grub-git/grub.install b/libre/grub-git/grub.install deleted file mode 100644 index 9188b357a..000000000 --- a/libre/grub-git/grub.install +++ /dev/null @@ -1,33 +0,0 @@ -infodir="usr/share/info" -filelist=('grub.info' 'grub-dev.info') - -post_install() { - if [ -f /boot/grub/grub.cfg.pacsave ]; then - echo "Copying /boot/grub/grub.cfg.pacsave to /boot/grub/grub.cfg" - install -D -m0644 /boot/grub/grub.cfg.pacsave /boot/grub/grub.cfg - fi - - cat << 'EOM' -Generating grub.cfg.example config file... -This may fail on some machines running a custom kernel. -EOM - - grub-mkconfig -o /boot/grub/grub.cfg.example 2> /dev/null - echo "done." - - for file in ${filelist[@]}; do - install-info ${infodir}/${file}.gz ${infodir}/dir 2> /dev/null - done -} - -post_upgrade() { - for file in ${filelist[@]}; do - install-info ${infodir}/${file}.gz ${infodir}/dir 2> /dev/null - done -} - -pre_remove() { - for file in ${filelist[@]}; do - install-info --delete ${infodir}/${file} ${infodir}/dir 2> /dev/null - done -} diff --git a/libre/grub-git/uboot+grub-git.1.log b/libre/grub-git/uboot+grub-git.1.log deleted file mode 100644 index 48e1ade81..000000000 --- a/libre/grub-git/uboot+grub-git.1.log +++ /dev/null @@ -1,14051 +0,0 @@ -U-Boot SPL 2015.04 (Nov 08 2015 - 01:22:00) - - - -U-Boot 2015.04 (Nov 08 2015 - 01:22:00) - - - Watchdog enabled - -I2C: ready - -DRAM: 512 MiB - -MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1 - -Using default environment - - -Net: <ethaddr> not set. Validating first E-fuse MAC - -cpsw - -Hit any key to stop autoboot: 1 0 - -gpio: pin 53 (gpio 53) value is 1 - -starting USB... - -USB0: Port not available. - -switch to partitions #0, OK - -mmc0 is current device - -mmc found on device 0 - -Checking for: /boot/uEnv.txt ... - -gpio: pin 54 (gpio 54) value is 1 - -25 bytes read in 30 ms (0 Bytes/s) - -Loaded environment from /boot/uEnv.txt - -Checking if uenvcmd is set ... - -gpio: pin 55 (gpio 55) value is 1 - -74328 bytes read in 346 ms (209 KiB/s) - -gpio: pin 56 (gpio 56) value is 1 - -## Booting kernel from Legacy Image at 82000000 ... - - Image Name: - - Created: 2015-01-01 0:00:00 UTC - - Image Type: ARM Linux Kernel Image (uncompressed) - - Data Size: 74264 Bytes = 72.5 KiB - - Load Address: 82000000 - - Entry Point: 82000000 - - Verifying Checksum ... OK - - Loading Kernel Image ... OK - - -Starting kernel ... - - -0 crossers - - -MMU tables generated - - -enabling MMU - - -MMU enabled - - -[7mWelcome to GRUB! - - - - -[m[m[mscript/script.c:65: free 0x82fefcf0 - - -script/script.c:65: free 0x82fefd10 - - -script/script.c:65: free 0x82fefd30 - - -script/script.c:65: free 0x82fefa60 - - -script/script.c:65: free 0x82fefa90 - - -script/script.c:65: free 0x82fefab0 - - -script/script.c:65: free 0x82fefae0 - - -script/script.c:65: free 0x82fefb10 - - -script/script.c:65: free 0x82fefbd0 - - -script/script.c:65: free 0x82fefc40 - - -script/script.c:65: free 0x82fefc70 - - -script/script.c:65: free 0x82fefc90 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fefbf0 - - -script/script.c:50: malloc 0x82fefbd0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fefc90 - - -script/script.c:50: malloc 0x82fefbb0 - - -script/script.c:65: free 0x82fefbb0 - - -script/script.c:65: free 0x82fefc90 - - -script/script.c:65: free 0x82fefbd0 - - -script/script.c:65: free 0x82fefbf0 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fefbb0 - - -script/script.c:50: malloc 0x82fefb90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fefb60 - - -script/lexer.c:322: token 288 text [part_gpt] - - -script/script.c:50: malloc 0x82fefb30 - - -script/script.c:50: malloc 0x82fefb10 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fefae0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fefab0 - - -script/script.c:50: malloc 0x82fefa90 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fefa60 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fefc90 - - -script/script.c:50: malloc 0x82fefc70 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fefc50 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34624448 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82ff0d50, size 0x9b8 - - -kern/dl.c:620: relocating to 0x82ff1930 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x750 bytes at 0x82ff05f0 - - -kern/dl.c:643: module name: part_gpt - - -kern/dl.c:644: init function: 0x82ff08d0 - - -script/script.c:65: free 0x82fefc50 - - -script/script.c:65: free 0x82fefc70 - - -script/script.c:65: free 0x82fefc90 - - -script/script.c:65: free 0x82fefa60 - - -script/script.c:65: free 0x82fefa90 - - -script/script.c:65: free 0x82fefab0 - - -script/script.c:65: free 0x82fefae0 - - -script/script.c:65: free 0x82fefb10 - - -script/script.c:65: free 0x82fefb30 - - -script/script.c:65: free 0x82fefb60 - - -script/script.c:65: free 0x82fefb90 - - -script/script.c:65: free 0x82fefbb0 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fee0f0 - - -script/script.c:50: malloc 0x82fee0d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fee0a0 - - -script/lexer.c:322: token 288 text [part_msdos] - - -script/script.c:50: malloc 0x82fee070 - - -script/script.c:50: malloc 0x82fee040 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fee010 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedfe0 - - -script/script.c:50: malloc 0x82fedfc0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fedf90 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fee1b0 - - -script/script.c:50: malloc 0x82fee190 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fedf70 - - -script/script.c:65: free 0x82fedf70 - - -script/script.c:65: free 0x82fee190 - - -script/script.c:65: free 0x82fee1b0 - - -script/script.c:65: free 0x82fedf90 - - -script/script.c:65: free 0x82fedfc0 - - -script/script.c:65: free 0x82fedfe0 - - -script/script.c:65: free 0x82fee010 - - -script/script.c:65: free 0x82fee040 - - -script/script.c:65: free 0x82fee070 - - -script/script.c:65: free 0x82fee0a0 - - -script/script.c:65: free 0x82fee0d0 - - -script/script.c:65: free 0x82fee0f0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fee1b0 - - -script/script.c:50: malloc 0x82fee0b0 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fedf80 - - -script/script.c:50: malloc 0x82fedf60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedf30 - - -script/lexer.c:322: token 289 text [-s] - - -script/script.c:50: malloc 0x82fedf00 - - -script/script.c:50: malloc 0x82fedee0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedeb0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fede10 - - -script/script.c:50: malloc 0x82feddf0 - - -script/lexer.c:322: token 289 text [prefix] - - -script/script.c:50: malloc 0x82feddc0 - - -script/script.c:50: malloc 0x82fedda0 - - -script/lexer.c:322: token 289 text [/grubenv] - - -script/script.c:50: malloc 0x82fedd70 - - -script/script.c:50: malloc 0x82fedd50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedd20 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fedcf0 - - -script/script.c:50: malloc 0x82fedcd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedca0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fedc70 - - -script/script.c:50: malloc 0x82fedc50 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fedc20 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fedc00 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fedbd0 - - -script/script.c:50: malloc 0x82fedbb0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedb80 - - -script/script.c:50: malloc 0x82fedb60 - - -script/lexer.c:322: token 288 text [load_env] - - -script/script.c:50: malloc 0x82feda80 - - -script/script.c:50: malloc 0x82feda60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feda30 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feda00 - - -script/script.c:50: malloc 0x82fed9e0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fed9b0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fed990 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fed8b0 - - -script/script.c:50: malloc 0x82fed890 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fed860 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fed830 - - -script/script.c:50: malloc 0x82fed810 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fed960 - - -script/script.c:50: malloc 0x82fed940 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fed7f0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34623616 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82feeb10, size 0x172c - - -kern/dl.c:620: relocating to 0x82ff1530 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x151d bytes at 0x82fec2c0 - - -kern/dl.c:643: module name: test - - -kern/dl.c:644: init function: 0x82fed044 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fee730, size 0x1b10 - - -kern/dl.c:620: relocating to 0x82ff1270 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34624320 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82feb450, size 0xab4 - - -kern/dl.c:620: relocating to 0x82ff0e70 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x89d bytes at 0x82feaba0 - - -kern/dl.c:643: module name: disk - - -kern/dl.c:644: init function: 0x82feaffc - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x1890 bytes at 0x82fe8f90 - - -kern/dl.c:643: module name: loadenv - - -kern/dl.c:644: init function: 0x82fe975c - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34622592 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82fed7f0 - - -script/script.c:65: free 0x82fed940 - - -script/script.c:65: free 0x82fed960 - - -script/script.c:65: free 0x82fed810 - - -script/script.c:65: free 0x82fed830 - - -script/script.c:65: free 0x82fed860 - - -script/script.c:65: free 0x82fed890 - - -script/script.c:65: free 0x82fed8b0 - - -script/script.c:65: free 0x82fed990 - - -script/script.c:65: free 0x82fed9b0 - - -script/script.c:65: free 0x82fed9e0 - - -script/script.c:65: free 0x82feda00 - - -script/script.c:65: free 0x82feda30 - - -script/script.c:65: free 0x82feda60 - - -script/script.c:65: free 0x82feda80 - - -script/script.c:65: free 0x82fedb60 - - -script/script.c:65: free 0x82fedb80 - - -script/script.c:65: free 0x82fedbb0 - - -script/script.c:65: free 0x82fedbd0 - - -script/script.c:65: free 0x82fedc00 - - -script/script.c:65: free 0x82fedc20 - - -script/script.c:65: free 0x82fedc50 - - -script/script.c:65: free 0x82fedc70 - - -script/script.c:65: free 0x82fedca0 - - -script/script.c:65: free 0x82fedcd0 - - -script/script.c:65: free 0x82fedcf0 - - -script/script.c:65: free 0x82fedd20 - - -script/script.c:65: free 0x82fedd50 - - -script/script.c:65: free 0x82fedd70 - - -script/script.c:65: free 0x82fedda0 - - -script/script.c:65: free 0x82feddc0 - - -script/script.c:65: free 0x82feddf0 - - -script/script.c:65: free 0x82fede10 - - -script/script.c:65: free 0x82fedeb0 - - -script/script.c:65: free 0x82fedee0 - - -script/script.c:65: free 0x82fedf00 - - -script/script.c:65: free 0x82fedf30 - - -script/script.c:65: free 0x82fedf60 - - -script/script.c:65: free 0x82fedf80 - - -script/script.c:65: free 0x82fee0b0 - - -script/script.c:65: free 0x82fee1b0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fee060 - - -script/script.c:50: malloc 0x82fee040 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fedf10 - - -script/script.c:50: malloc 0x82fedef0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedec0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fede20 - - -script/script.c:50: malloc 0x82fede00 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82feddd0 - - -script/script.c:50: malloc 0x82feddb0 - - -script/lexer.c:322: token 289 text [next_entry] - - -script/script.c:50: malloc 0x82fedd80 - - -script/script.c:50: malloc 0x82fedd50 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedd20 - - -script/script.c:50: malloc 0x82fedd00 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fedce0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedcb0 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fedc80 - - -script/script.c:50: malloc 0x82fedc60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedc30 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fedc00 - - -script/script.c:50: malloc 0x82fedbe0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fedbb0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fedb90 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fedb60 - - -script/script.c:50: malloc 0x82feda90 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feda60 - - -script/script.c:50: malloc 0x82feda40 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fed940 - - -script/script.c:50: malloc 0x82fed920 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fed8f0 - - -script/lexer.c:322: token 289 text [default=] - - -script/script.c:50: malloc 0x82fed850 - - -script/script.c:50: malloc 0x82fed830 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febef0 - - -script/script.c:50: malloc 0x82febed0 - - -script/lexer.c:322: token 289 text [next_entry] - - -script/script.c:50: malloc 0x82febea0 - - -script/script.c:50: malloc 0x82febe70 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febe40 - - -script/script.c:50: malloc 0x82febe20 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fed8c0 - - -script/script.c:50: malloc 0x82febe00 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febdd0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82febda0 - - -script/script.c:50: malloc 0x82febd80 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82febd50 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82febd30 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82febc40 - - -script/script.c:50: malloc 0x82febc20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febbf0 - - -script/lexer.c:322: token 289 text [next_entry=] - - -script/script.c:50: malloc 0x82febbc0 - - -script/script.c:50: malloc 0x82febb90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febb60 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82febb30 - - -script/script.c:50: malloc 0x82febb10 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82febae0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [save_env] - - -script/script.c:50: malloc 0x82feb9f0 - - -script/script.c:50: malloc 0x82feb9d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb9a0 - - -script/lexer.c:322: token 288 text [next_entry] - - -script/script.c:50: malloc 0x82feb970 - - -script/script.c:50: malloc 0x82feb940 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb910 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb8e0 - - -script/script.c:50: malloc 0x82feb8c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82feb890 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82feb7a0 - - -script/script.c:50: malloc 0x82feb780 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb750 - - -script/lexer.c:322: token 289 text [boot_once=true] - - -script/script.c:50: malloc 0x82feb720 - - -script/script.c:50: malloc 0x82feb6f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb6c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb690 - - -script/script.c:50: malloc 0x82feb670 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82feb640 - - -script/script.c:294: append command - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82feb560 - - -script/script.c:50: malloc 0x82feb540 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb510 - - -script/script.c:50: malloc 0x82feb4f0 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe88f0 - - -script/script.c:50: malloc 0x82fe88d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe88a0 - - -script/lexer.c:322: token 289 text [default=] - - -script/script.c:50: malloc 0x82fe8810 - - -script/script.c:50: malloc 0x82fe87f0 - - -script/lexer.c:322: token 289 text [0] - - -script/script.c:50: malloc 0x82fe87c0 - - -script/script.c:50: malloc 0x82fe87a0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe8870 - - -script/script.c:50: malloc 0x82fe8780 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8750 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8720 - - -script/script.c:50: malloc 0x82fe8700 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe86d0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe86b0 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe85d0 - - -script/script.c:50: malloc 0x82fe85b0 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe8580 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8550 - - -script/script.c:50: malloc 0x82fe8530 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe8680 - - -script/script.c:50: malloc 0x82fe8660 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe8510 - - -script/script.c:65: free 0x82fe8510 - - -script/script.c:65: free 0x82fe8660 - - -script/script.c:65: free 0x82fe8680 - - -script/script.c:65: free 0x82fe8530 - - -script/script.c:65: free 0x82fe8550 - - -script/script.c:65: free 0x82fe8580 - - -script/script.c:65: free 0x82fe85b0 - - -script/script.c:65: free 0x82fe85d0 - - -script/script.c:65: free 0x82fe86b0 - - -script/script.c:65: free 0x82fe86d0 - - -script/script.c:65: free 0x82fe8700 - - -script/script.c:65: free 0x82fe8720 - - -script/script.c:65: free 0x82fe8750 - - -script/script.c:65: free 0x82fe8780 - - -script/script.c:65: free 0x82fe8870 - - -script/script.c:65: free 0x82fe87a0 - - -script/script.c:65: free 0x82fe87c0 - - -script/script.c:65: free 0x82fe87f0 - - -script/script.c:65: free 0x82fe8810 - - -script/script.c:65: free 0x82fe88a0 - - -script/script.c:65: free 0x82fe88d0 - - -script/script.c:65: free 0x82fe88f0 - - -script/script.c:65: free 0x82feb4f0 - - -script/script.c:65: free 0x82feb510 - - -script/script.c:65: free 0x82feb540 - - -script/script.c:65: free 0x82feb560 - - -script/script.c:65: free 0x82feb640 - - -script/script.c:65: free 0x82feb670 - - -script/script.c:65: free 0x82feb690 - - -script/script.c:65: free 0x82feb6c0 - - -script/script.c:65: free 0x82feb6f0 - - -script/script.c:65: free 0x82feb720 - - -script/script.c:65: free 0x82feb750 - - -script/script.c:65: free 0x82feb780 - - -script/script.c:65: free 0x82feb7a0 - - -script/script.c:65: free 0x82feb890 - - -script/script.c:65: free 0x82feb8c0 - - -script/script.c:65: free 0x82feb8e0 - - -script/script.c:65: free 0x82feb910 - - -script/script.c:65: free 0x82feb940 - - -script/script.c:65: free 0x82feb970 - - -script/script.c:65: free 0x82feb9a0 - - -script/script.c:65: free 0x82feb9d0 - - -script/script.c:65: free 0x82feb9f0 - - -script/script.c:65: free 0x82febae0 - - -script/script.c:65: free 0x82febb10 - - -script/script.c:65: free 0x82febb30 - - -script/script.c:65: free 0x82febb60 - - -script/script.c:65: free 0x82febb90 - - -script/script.c:65: free 0x82febbc0 - - -script/script.c:65: free 0x82febbf0 - - -script/script.c:65: free 0x82febc20 - - -script/script.c:65: free 0x82febc40 - - -script/script.c:65: free 0x82febd30 - - -script/script.c:65: free 0x82febd50 - - -script/script.c:65: free 0x82febd80 - - -script/script.c:65: free 0x82febda0 - - -script/script.c:65: free 0x82febdd0 - - -script/script.c:65: free 0x82febe00 - - -script/script.c:65: free 0x82fed8c0 - - -script/script.c:65: free 0x82febe20 - - -script/script.c:65: free 0x82febe40 - - -script/script.c:65: free 0x82febe70 - - -script/script.c:65: free 0x82febea0 - - -script/script.c:65: free 0x82febed0 - - -script/script.c:65: free 0x82febef0 - - -script/script.c:65: free 0x82fed830 - - -script/script.c:65: free 0x82fed850 - - -script/script.c:65: free 0x82fed8f0 - - -script/script.c:65: free 0x82fed920 - - -script/script.c:65: free 0x82fed940 - - -script/script.c:65: free 0x82feda40 - - -script/script.c:65: free 0x82feda60 - - -script/script.c:65: free 0x82feda90 - - -script/script.c:65: free 0x82fedb60 - - -script/script.c:65: free 0x82fedb90 - - -script/script.c:65: free 0x82fedbb0 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc00 - - -script/script.c:65: free 0x82fedc30 - - -script/script.c:65: free 0x82fedc60 - - -script/script.c:65: free 0x82fedc80 - - -script/script.c:65: free 0x82fedcb0 - - -script/script.c:65: free 0x82fedce0 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedd00 - - -script/script.c:65: free 0x82fedd20 - - -script/script.c:65: free 0x82fedd50 - - -script/script.c:65: free 0x82fedd80 - - -script/script.c:65: free 0x82feddb0 - - -script/script.c:65: free 0x82feddd0 - - -script/script.c:65: free 0x82fede00 - - -script/script.c:65: free 0x82fede20 - - -script/script.c:65: free 0x82fedec0 - - -script/script.c:65: free 0x82fedef0 - - -script/script.c:65: free 0x82fedf10 - - -script/script.c:65: free 0x82fee040 - - -script/script.c:65: free 0x82fee060 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fee000 - - -script/script.c:50: malloc 0x82fedfe0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fee080 - - -script/script.c:50: malloc 0x82fedfc0 - - -script/script.c:65: free 0x82fedfc0 - - -script/script.c:65: free 0x82fee080 - - -script/script.c:65: free 0x82fedfe0 - - -script/script.c:65: free 0x82fee000 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fedfa0 - - -script/script.c:50: malloc 0x82fedf80 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fede50 - - -script/script.c:50: malloc 0x82fede30 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fede00 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fedd60 - - -script/script.c:50: malloc 0x82fedd40 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedd10 - - -script/script.c:50: malloc 0x82fedcf0 - - -script/lexer.c:322: token 289 text [feature_menuentry_id] - - -script/script.c:50: malloc 0x82fedcc0 - - -script/script.c:50: malloc 0x82fedc90 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedc60 - - -script/script.c:50: malloc 0x82fedc40 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82feddd0 - - -script/script.c:50: malloc 0x82fedc20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedbf0 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:50: malloc 0x82fedba0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedb70 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fedb40 - - -script/script.c:50: malloc 0x82feda90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feda60 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82feda30 - - -script/script.c:50: malloc 0x82fed950 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fed920 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fed8f0 - - -script/script.c:50: malloc 0x82fed8d0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fed8a0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fed880 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fed850 - - -script/script.c:50: malloc 0x82fed830 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82febef0 - - -script/script.c:50: malloc 0x82febed0 - - -script/lexer.c:322: token 289 text [menuentry_id_option=] - - -script/script.c:50: malloc 0x82febda0 - - -script/script.c:50: malloc 0x82febd70 - - -script/lexer.c:322: token 289 text [--id] - - -script/script.c:50: malloc 0x82febd40 - - -script/script.c:50: malloc 0x82febd20 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febc40 - - -script/script.c:50: malloc 0x82febc20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febbf0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82febbc0 - - -script/script.c:50: malloc 0x82febba0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82febb70 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82febb50 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82feb9f0 - - -script/script.c:50: malloc 0x82feb9d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb9a0 - - -script/script.c:50: malloc 0x82feb980 - - -script/lexer.c:322: token 289 text [menuentry_id_option=] - - -script/script.c:50: malloc 0x82feb7a0 - - -script/script.c:50: malloc 0x82feb770 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82feb740 - - -script/script.c:50: malloc 0x82feb720 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82feb890 - - -script/script.c:50: malloc 0x82feb700 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb6d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb6a0 - - -script/script.c:50: malloc 0x82feb680 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82feb650 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82feb570 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe88f0 - - -script/script.c:50: malloc 0x82fe88d0 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe88a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8870 - - -script/script.c:50: malloc 0x82fe8850 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82feb540 - - -script/script.c:50: malloc 0x82feb520 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82feb500 - - -script/script.c:65: free 0x82feb500 - - -script/script.c:65: free 0x82feb520 - - -script/script.c:65: free 0x82feb540 - - -script/script.c:65: free 0x82fe8850 - - -script/script.c:65: free 0x82fe8870 - - -script/script.c:65: free 0x82fe88a0 - - -script/script.c:65: free 0x82fe88d0 - - -script/script.c:65: free 0x82fe88f0 - - -script/script.c:65: free 0x82feb570 - - -script/script.c:65: free 0x82feb650 - - -script/script.c:65: free 0x82feb680 - - -script/script.c:65: free 0x82feb6a0 - - -script/script.c:65: free 0x82feb6d0 - - -script/script.c:65: free 0x82feb700 - - -script/script.c:65: free 0x82feb890 - - -script/script.c:65: free 0x82feb720 - - -script/script.c:65: free 0x82feb740 - - -script/script.c:65: free 0x82feb770 - - -script/script.c:65: free 0x82feb7a0 - - -script/script.c:65: free 0x82feb980 - - -script/script.c:65: free 0x82feb9a0 - - -script/script.c:65: free 0x82feb9d0 - - -script/script.c:65: free 0x82feb9f0 - - -script/script.c:65: free 0x82febb50 - - -script/script.c:65: free 0x82febb70 - - -script/script.c:65: free 0x82febba0 - - -script/script.c:65: free 0x82febbc0 - - -script/script.c:65: free 0x82febbf0 - - -script/script.c:65: free 0x82febc20 - - -script/script.c:65: free 0x82febc40 - - -script/script.c:65: free 0x82febd20 - - -script/script.c:65: free 0x82febd40 - - -script/script.c:65: free 0x82febd70 - - -script/script.c:65: free 0x82febda0 - - -script/script.c:65: free 0x82febed0 - - -script/script.c:65: free 0x82febef0 - - -script/script.c:65: free 0x82fed830 - - -script/script.c:65: free 0x82fed850 - - -script/script.c:65: free 0x82fed880 - - -script/script.c:65: free 0x82fed8a0 - - -script/script.c:65: free 0x82fed8d0 - - -script/script.c:65: free 0x82fed8f0 - - -script/script.c:65: free 0x82fed920 - - -script/script.c:65: free 0x82fed950 - - -script/script.c:65: free 0x82feda30 - - -script/script.c:65: free 0x82feda60 - - -script/script.c:65: free 0x82feda90 - - -script/script.c:65: free 0x82fedb40 - - -script/script.c:65: free 0x82fedb70 - - -script/script.c:65: free 0x82fedba0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedbf0 - - -script/script.c:65: free 0x82fedc20 - - -script/script.c:65: free 0x82feddd0 - - -script/script.c:65: free 0x82fedc40 - - -script/script.c:65: free 0x82fedc60 - - -script/script.c:65: free 0x82fedc90 - - -script/script.c:65: free 0x82fedcc0 - - -script/script.c:65: free 0x82fedcf0 - - -script/script.c:65: free 0x82fedd10 - - -script/script.c:65: free 0x82fedd40 - - -script/script.c:65: free 0x82fedd60 - - -script/script.c:65: free 0x82fede00 - - -script/script.c:65: free 0x82fede30 - - -script/script.c:65: free 0x82fede50 - - -script/script.c:65: free 0x82fedf80 - - -script/script.c:65: free 0x82fedfa0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedf60 - - -script/script.c:50: malloc 0x82fedf40 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fedf10 - - -script/script.c:50: malloc 0x82fedef0 - - -script/script.c:65: free 0x82fedef0 - - -script/script.c:65: free 0x82fedf10 - - -script/script.c:65: free 0x82fedf40 - - -script/script.c:65: free 0x82fedf60 - - -script/lexer.c:322: token 288 text [export] - - -script/script.c:50: malloc 0x82fedf60 - - -script/script.c:50: malloc 0x82fedf40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedf10 - - -script/lexer.c:322: token 288 text [menuentry_id_option] - - -script/script.c:50: malloc 0x82fedee0 - - -script/script.c:50: malloc 0x82fedeb0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fede80 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fede50 - - -script/script.c:50: malloc 0x82fede30 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fede00 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82feddd0 - - -script/script.c:50: malloc 0x82feddb0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fedd90 - - -script/script.c:65: free 0x82fedd90 - - -script/script.c:65: free 0x82feddb0 - - -script/script.c:65: free 0x82feddd0 - - -script/script.c:65: free 0x82fede00 - - -script/script.c:65: free 0x82fede30 - - -script/script.c:65: free 0x82fede50 - - -script/script.c:65: free 0x82fede80 - - -script/script.c:65: free 0x82fedeb0 - - -script/script.c:65: free 0x82fedee0 - - -script/script.c:65: free 0x82fedf10 - - -script/script.c:65: free 0x82fedf40 - - -script/script.c:65: free 0x82fedf60 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedf60 - - -script/script.c:50: malloc 0x82fedf40 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fedf10 - - -script/script.c:50: malloc 0x82fedef0 - - -script/script.c:65: free 0x82fedef0 - - -script/script.c:65: free 0x82fedf10 - - -script/script.c:65: free 0x82fedf40 - - -script/script.c:65: free 0x82fedf60 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fedf20 - - -script/script.c:50: malloc 0x82fedf00 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82feddd0 - - -script/script.c:50: malloc 0x82feddb0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedd80 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedce0 - - -script/script.c:50: malloc 0x82fedcc0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedc90 - - -script/script.c:50: malloc 0x82fedc70 - - -script/lexer.c:322: token 289 text [prev_saved_entry] - - -script/script.c:50: malloc 0x82fedc40 - - -script/script.c:50: malloc 0x82fedc10 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedbe0 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedd50 - - -script/script.c:50: malloc 0x82fedba0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedb70 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fedb40 - - -script/script.c:50: malloc 0x82feda90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feda60 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82feda30 - - -script/script.c:50: malloc 0x82fed950 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fed920 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fed900 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fed8d0 - - -script/script.c:50: malloc 0x82fed8b0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fed880 - - -script/script.c:50: malloc 0x82fed860 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fed830 - - -script/script.c:50: malloc 0x82febdf0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febdc0 - - -script/lexer.c:322: token 289 text [saved_entry=] - - -script/script.c:50: malloc 0x82febc40 - - -script/script.c:50: malloc 0x82febc10 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febbe0 - - -script/script.c:50: malloc 0x82febbc0 - - -script/lexer.c:322: token 289 text [prev_saved_entry] - - -script/script.c:50: malloc 0x82febb90 - - -script/script.c:50: malloc 0x82febb60 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febb30 - - -script/script.c:50: malloc 0x82feba00 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febd90 - - -script/script.c:50: malloc 0x82febd70 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febd40 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82febd10 - - -script/script.c:50: malloc 0x82feb9e0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82feb9b0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82feb990 - - -script/lexer.c:322: token 288 text [save_env] - - -script/script.c:50: malloc 0x82feb7a0 - - -script/script.c:50: malloc 0x82feb780 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb750 - - -script/lexer.c:322: token 288 text [saved_entry] - - -script/script.c:50: malloc 0x82feb720 - - -script/script.c:50: malloc 0x82feb6f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb6c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb690 - - -script/script.c:50: malloc 0x82feb670 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82feb640 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe88f0 - - -script/script.c:50: malloc 0x82fe88d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe88a0 - - -script/lexer.c:322: token 289 text [prev_saved_entry=] - - -script/script.c:50: malloc 0x82fe8870 - - -script/script.c:50: malloc 0x82fe8840 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8810 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe87e0 - - -script/script.c:50: malloc 0x82fe87c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe8790 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [save_env] - - -script/script.c:50: malloc 0x82fe86a0 - - -script/script.c:50: malloc 0x82fe8680 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8650 - - -script/lexer.c:322: token 288 text [prev_saved_entry] - - -script/script.c:50: malloc 0x82fe8620 - - -script/script.c:50: malloc 0x82fe85f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe85c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8590 - - -script/script.c:50: malloc 0x82fe8570 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe8540 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe8450 - - -script/script.c:50: malloc 0x82fe8430 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8400 - - -script/lexer.c:322: token 289 text [boot_once=true] - - -script/script.c:50: malloc 0x82fe83d0 - - -script/script.c:50: malloc 0x82fe83a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8370 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8340 - - -script/script.c:50: malloc 0x82fe8320 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe82f0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe8210 - - -script/script.c:50: malloc 0x82fe81f0 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe81c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8190 - - -script/script.c:50: malloc 0x82fe8170 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe82c0 - - -script/script.c:50: malloc 0x82fe82a0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe8150 - - -script/script.c:65: free 0x82fe8150 - - -script/script.c:65: free 0x82fe82a0 - - -script/script.c:65: free 0x82fe82c0 - - -script/script.c:65: free 0x82fe8170 - - -script/script.c:65: free 0x82fe8190 - - -script/script.c:65: free 0x82fe81c0 - - -script/script.c:65: free 0x82fe81f0 - - -script/script.c:65: free 0x82fe8210 - - -script/script.c:65: free 0x82fe82f0 - - -script/script.c:65: free 0x82fe8320 - - -script/script.c:65: free 0x82fe8340 - - -script/script.c:65: free 0x82fe8370 - - -script/script.c:65: free 0x82fe83a0 - - -script/script.c:65: free 0x82fe83d0 - - -script/script.c:65: free 0x82fe8400 - - -script/script.c:65: free 0x82fe8430 - - -script/script.c:65: free 0x82fe8450 - - -script/script.c:65: free 0x82fe8540 - - -script/script.c:65: free 0x82fe8570 - - -script/script.c:65: free 0x82fe8590 - - -script/script.c:65: free 0x82fe85c0 - - -script/script.c:65: free 0x82fe85f0 - - -script/script.c:65: free 0x82fe8620 - - -script/script.c:65: free 0x82fe8650 - - -script/script.c:65: free 0x82fe8680 - - -script/script.c:65: free 0x82fe86a0 - - -script/script.c:65: free 0x82fe8790 - - -script/script.c:65: free 0x82fe87c0 - - -script/script.c:65: free 0x82fe87e0 - - -script/script.c:65: free 0x82fe8810 - - -script/script.c:65: free 0x82fe8840 - - -script/script.c:65: free 0x82fe8870 - - -script/script.c:65: free 0x82fe88a0 - - -script/script.c:65: free 0x82fe88d0 - - -script/script.c:65: free 0x82fe88f0 - - -script/script.c:65: free 0x82feb640 - - -script/script.c:65: free 0x82feb670 - - -script/script.c:65: free 0x82feb690 - - -script/script.c:65: free 0x82feb6c0 - - -script/script.c:65: free 0x82feb6f0 - - -script/script.c:65: free 0x82feb720 - - -script/script.c:65: free 0x82feb750 - - -script/script.c:65: free 0x82feb780 - - -script/script.c:65: free 0x82feb7a0 - - -script/script.c:65: free 0x82feb990 - - -script/script.c:65: free 0x82feb9b0 - - -script/script.c:65: free 0x82feb9e0 - - -script/script.c:65: free 0x82febd10 - - -script/script.c:65: free 0x82febd40 - - -script/script.c:65: free 0x82febd70 - - -script/script.c:65: free 0x82febd90 - - -script/script.c:65: free 0x82feba00 - - -script/script.c:65: free 0x82febb30 - - -script/script.c:65: free 0x82febb60 - - -script/script.c:65: free 0x82febb90 - - -script/script.c:65: free 0x82febbc0 - - -script/script.c:65: free 0x82febbe0 - - -script/script.c:65: free 0x82febc10 - - -script/script.c:65: free 0x82febc40 - - -script/script.c:65: free 0x82febdc0 - - -script/script.c:65: free 0x82febdf0 - - -script/script.c:65: free 0x82fed830 - - -script/script.c:65: free 0x82fed860 - - -script/script.c:65: free 0x82fed880 - - -script/script.c:65: free 0x82fed8b0 - - -script/script.c:65: free 0x82fed8d0 - - -script/script.c:65: free 0x82fed900 - - -script/script.c:65: free 0x82fed920 - - -script/script.c:65: free 0x82fed950 - - -script/script.c:65: free 0x82feda30 - - -script/script.c:65: free 0x82feda60 - - -script/script.c:65: free 0x82feda90 - - -script/script.c:65: free 0x82fedb40 - - -script/script.c:65: free 0x82fedb70 - - -script/script.c:65: free 0x82fedba0 - - -script/script.c:65: free 0x82fedd50 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc10 - - -script/script.c:65: free 0x82fedc40 - - -script/script.c:65: free 0x82fedc70 - - -script/script.c:65: free 0x82fedc90 - - -script/script.c:65: free 0x82fedcc0 - - -script/script.c:65: free 0x82fedce0 - - -script/script.c:65: free 0x82fedd80 - - -script/script.c:65: free 0x82feddb0 - - -script/script.c:65: free 0x82feddd0 - - -script/script.c:65: free 0x82fedf00 - - -script/script.c:65: free 0x82fedf20 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedee0 - - -script/script.c:50: malloc 0x82fedec0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fede70 - - -script/script.c:65: free 0x82fede70 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedec0 - - -script/script.c:65: free 0x82fedee0 - - -script/lexer.c:322: token 287 text [function] - - -script/script.c:50: malloc 0x82fedee0 - - -script/script.c:50: malloc 0x82fedec0 - - -script/lexer.c:322: token 288 text [savedefault] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fede60 - - -script/lexer.c:322: token 266 text [{] - - -script/script.c:50: malloc 0x82fede30 - - -script/script.c:50: malloc 0x82fede10 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedde0 - - -script/script.c:50: malloc 0x82feddc0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fedc80 - - -script/script.c:50: malloc 0x82fedc60 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fedc30 - - -script/script.c:50: malloc 0x82fedb60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feda80 - - -script/lexer.c:322: token 289 text [-z] - - -script/script.c:50: malloc 0x82feda50 - - -script/script.c:50: malloc 0x82feda30 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fed940 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fed8b0 - - -script/script.c:50: malloc 0x82fed890 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fed860 - - -script/script.c:50: malloc 0x82fed840 - - -script/lexer.c:322: token 289 text [boot_once] - - -script/script.c:50: malloc 0x82febde0 - - -script/script.c:50: malloc 0x82febdb0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febd80 - - -script/script.c:50: malloc 0x82febd60 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fed910 - - -script/script.c:50: malloc 0x82febd40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febc40 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82febc10 - - -script/script.c:50: malloc 0x82febbf0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febbc0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82febb90 - - -script/script.c:50: malloc 0x82febb70 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82febb40 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82feba00 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82feb9d0 - - -script/script.c:50: malloc 0x82feb9b0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb980 - - -script/script.c:50: malloc 0x82feb7b0 - - -script/lexer.c:322: token 289 text [saved_entry=] - - -script/script.c:50: malloc 0x82feb680 - - -script/script.c:50: malloc 0x82feb650 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82feb620 - - -script/script.c:50: malloc 0x82fe8900 - - -script/lexer.c:322: token 289 text [chosen] - - -script/script.c:50: malloc 0x82fe88d0 - - -script/script.c:50: malloc 0x82fe88b0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe8880 - - -script/script.c:50: malloc 0x82fe8860 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe8830 - - -script/script.c:50: malloc 0x82fe8810 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe87e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe87b0 - - -script/script.c:50: malloc 0x82fe8790 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe86a0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe8680 - - -script/lexer.c:322: token 288 text [save_env] - - -script/script.c:50: malloc 0x82fe8590 - - -script/script.c:50: malloc 0x82fe8570 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8540 - - -script/lexer.c:322: token 288 text [saved_entry] - - -script/script.c:50: malloc 0x82fe8450 - - -script/script.c:50: malloc 0x82fe8420 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe83f0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe83c0 - - -script/script.c:50: malloc 0x82fe83a0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe8370 - - -script/script.c:294: append command - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe8290 - - -script/script.c:50: malloc 0x82fe8270 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe8240 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe8220 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe81f0 - - -script/script.c:50: malloc 0x82fe81d0 - - -script/lexer.c:322: token 267 text [}] - - -script/script.c:50: malloc 0x82fe80f0 - - -script/script.c:50: malloc 0x82fe80d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8020 - - -script/script.c:50: malloc 0x82fe8000 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe81a0 - - -script/script.c:50: malloc 0x82fe8180 - - -script/script.c:294: append command - - -script/script.c:65: free 0x82fe8180 - - -script/script.c:65: free 0x82fe81a0 - - -script/script.c:65: free 0x82fe8000 - - -script/script.c:65: free 0x82fe8020 - - -script/script.c:65: free 0x82fede60 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedec0 - - -script/script.c:65: free 0x82fedee0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedc00 - - -script/script.c:50: malloc 0x82fedbe0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fedf00 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedf00 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc00 - - -script/lexer.c:322: token 287 text [function] - - -script/script.c:50: malloc 0x82fedc00 - - -script/script.c:50: malloc 0x82fedbe0 - - -script/lexer.c:322: token 288 text [load_video] - - -script/script.c:50: malloc 0x82fe81a0 - - -script/script.c:50: malloc 0x82fe8170 - - -script/lexer.c:322: token 266 text [{] - - -script/script.c:50: malloc 0x82fe8020 - - -script/script.c:50: malloc 0x82fe8000 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe7fd0 - - -script/script.c:50: malloc 0x82fe7fb0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fe7e60 - - -script/script.c:50: malloc 0x82fe7e40 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fe7e10 - - -script/script.c:50: malloc 0x82fe7d40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7d10 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fe7c70 - - -script/script.c:50: malloc 0x82fe7c50 - - -script/lexer.c:322: token 289 text [feature_all_video_module] - - -script/script.c:50: malloc 0x82fe7c20 - - -script/script.c:50: malloc 0x82fe7bf0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe7ce0 - - -script/script.c:50: malloc 0x82fe7bd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7ba0 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fe7b70 - - -script/script.c:50: malloc 0x82fe7b50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7b20 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fe7af0 - - -script/script.c:50: malloc 0x82fe7ad0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7aa0 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fe7a70 - - -script/script.c:50: malloc 0x82fe7a50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7a20 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fe79f0 - - -script/script.c:50: malloc 0x82fe79d0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe79a0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe7980 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fe7950 - - -script/script.c:50: malloc 0x82fe7930 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe7900 - - -script/script.c:50: malloc 0x82fe78e0 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe77f0 - - -script/script.c:50: malloc 0x82fe77d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe77a0 - - -script/lexer.c:322: token 288 text [all_video] - - -script/script.c:50: malloc 0x82fe7770 - - -script/script.c:50: malloc 0x82fe7740 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7710 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe76e0 - - -script/script.c:50: malloc 0x82fe76c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe7690 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe7670 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82fe7590 - - -script/script.c:50: malloc 0x82fe7570 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe7540 - - -script/script.c:50: malloc 0x82fe7520 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe7430 - - -script/script.c:50: malloc 0x82fe7410 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe73e0 - - -script/lexer.c:322: token 288 text [efi_gop] - - -script/script.c:50: malloc 0x82fe73b0 - - -script/script.c:50: malloc 0x82fe7390 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7360 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe7330 - - -script/script.c:50: malloc 0x82fe7310 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe72e0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe72c0 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe71d0 - - -script/script.c:50: malloc 0x82fe71b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7180 - - -script/lexer.c:322: token 288 text [efi_uga] - - -script/script.c:50: malloc 0x82fe7150 - - -script/script.c:50: malloc 0x82fe7130 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7100 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe70d0 - - -script/script.c:50: malloc 0x82fe70b0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe7080 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe6f90 - - -script/script.c:50: malloc 0x82fe6f70 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6f40 - - -script/lexer.c:322: token 288 text [ieee1275_fb] - - -script/script.c:50: malloc 0x82fe6f10 - - -script/script.c:50: malloc 0x82fe6ee0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6eb0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6e80 - - -script/script.c:50: malloc 0x82fe6e60 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe6e30 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe6d40 - - -script/script.c:50: malloc 0x82fe6d20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6cf0 - - -script/lexer.c:322: token 288 text [vbe] - - -script/script.c:50: malloc 0x82fe6cc0 - - -script/script.c:50: malloc 0x82fe6ca0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6c70 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6c40 - - -script/script.c:50: malloc 0x82fe6c20 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe6bf0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe6b00 - - -script/script.c:50: malloc 0x82fe6ae0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6ab0 - - -script/lexer.c:322: token 288 text [vga] - - -script/script.c:50: malloc 0x82fe6a80 - - -script/script.c:50: malloc 0x82fe6a60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6a30 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6a00 - - -script/script.c:50: malloc 0x82fe69e0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe69b0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe68c0 - - -script/script.c:50: malloc 0x82fe68a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6870 - - -script/lexer.c:322: token 288 text [video_bochs] - - -script/script.c:50: malloc 0x82fe6840 - - -script/script.c:50: malloc 0x82fe6810 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe67e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe67b0 - - -script/script.c:50: malloc 0x82fe6790 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe6760 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe6670 - - -script/script.c:50: malloc 0x82fe6650 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6620 - - -script/lexer.c:322: token 288 text [video_cirrus] - - -script/script.c:50: malloc 0x82fe65f0 - - -script/script.c:50: malloc 0x82fe65c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6590 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6560 - - -script/script.c:50: malloc 0x82fe6540 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe6510 - - -script/script.c:294: append command - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe6430 - - -script/script.c:50: malloc 0x82fe6410 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe63e0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe63c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6390 - - -script/script.c:50: malloc 0x82fe6370 - - -script/lexer.c:322: token 267 text [}] - - -script/script.c:50: malloc 0x82fe6290 - - -script/script.c:50: malloc 0x82fe6270 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe61c0 - - -script/script.c:50: malloc 0x82fe61a0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe6340 - - -script/script.c:50: malloc 0x82fe6320 - - -script/script.c:294: append command - - -script/script.c:65: free 0x82fe6320 - - -script/script.c:65: free 0x82fe6340 - - -script/script.c:65: free 0x82fe61a0 - - -script/script.c:65: free 0x82fe61c0 - - -script/script.c:65: free 0x82fe8170 - - -script/script.c:65: free 0x82fe81a0 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc00 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedc00 - - -script/script.c:50: malloc 0x82fedbe0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc00 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fedbe0 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe81a0 - - -script/lexer.c:322: token 289 text [menu_color_normal=magenta/black] - - -script/script.c:50: malloc 0x82fe61c0 - - -script/script.c:50: malloc 0x82fe6180 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6150 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6120 - - -script/script.c:50: malloc 0x82fe6100 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe60d0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82febd10 - - -script/script.c:50: malloc 0x82fe6350 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe6330 - - -script/script.c:65: free 0x82fe6330 - - -script/script.c:65: free 0x82fe6350 - - -script/script.c:65: free 0x82febd10 - - -script/script.c:65: free 0x82fe60d0 - - -script/script.c:65: free 0x82fe6100 - - -script/script.c:65: free 0x82fe6120 - - -script/script.c:65: free 0x82fe6150 - - -script/script.c:65: free 0x82fe6180 - - -script/script.c:65: free 0x82fe61c0 - - -script/script.c:65: free 0x82fe81a0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedbe0 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fedbe0 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe81a0 - - -script/lexer.c:322: token 289 text [menu_color_highlight=white/magenta] - - -script/script.c:50: malloc 0x82fe61c0 - - -script/script.c:50: malloc 0x82fe6180 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6150 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6120 - - -script/script.c:50: malloc 0x82fe6100 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe60d0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82febd10 - - -script/script.c:50: malloc 0x82fe60b0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe6090 - - -script/script.c:65: free 0x82fe6090 - - -script/script.c:65: free 0x82fe60b0 - - -script/script.c:65: free 0x82febd10 - - -script/script.c:65: free 0x82fe60d0 - - -script/script.c:65: free 0x82fe6100 - - -script/script.c:65: free 0x82fe6120 - - -script/script.c:65: free 0x82fe6150 - - -script/script.c:65: free 0x82fe6180 - - -script/script.c:65: free 0x82fe61c0 - - -script/script.c:65: free 0x82fe81a0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedbe0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedc00 - - -script/script.c:50: malloc 0x82fedbe0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc00 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fedbf0 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82febd10 - - -script/script.c:50: malloc 0x82fe7df0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7dc0 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fe6340 - - -script/script.c:50: malloc 0x82fe6320 - - -script/lexer.c:322: token 289 text [feature_default_font_path] - - -script/script.c:50: malloc 0x82fe61c0 - - -script/script.c:50: malloc 0x82fe6180 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe62f0 - - -script/script.c:50: malloc 0x82fe6160 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6130 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fe6100 - - -script/script.c:50: malloc 0x82fe60e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe60b0 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fe6080 - - -script/script.c:50: malloc 0x82fe6060 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6030 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fe6000 - - -script/script.c:50: malloc 0x82fe5fe0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5fb0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fe5f80 - - -script/script.c:50: malloc 0x82fe5f60 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5f30 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe5f10 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fe5ee0 - - -script/script.c:50: malloc 0x82fe5ec0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5e90 - - -script/script.c:50: malloc 0x82fe5e70 - - -script/lexer.c:322: token 289 text [font=unicode] - - -script/script.c:50: malloc 0x82fe5d80 - - -script/script.c:50: malloc 0x82fe5d50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5d20 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5cf0 - - -script/script.c:50: malloc 0x82fe5cd0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5ca0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe5c80 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82fe5ba0 - - -script/script.c:50: malloc 0x82fe5b80 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5b50 - - -script/script.c:50: malloc 0x82fe5b30 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe5a40 - - -script/script.c:50: malloc 0x82fe5a20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe59f0 - - -script/lexer.c:322: token 288 text [part_msdos] - - -script/script.c:50: malloc 0x82fe59c0 - - -script/script.c:50: malloc 0x82fe5990 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5960 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5930 - - -script/script.c:50: malloc 0x82fe5910 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe58e0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe58c0 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe57e0 - - -script/script.c:50: malloc 0x82fe57c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5790 - - -script/lexer.c:322: token 288 text [ext2] - - -script/script.c:50: malloc 0x82fe5760 - - -script/script.c:50: malloc 0x82fe5740 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5710 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe56e0 - - -script/script.c:50: malloc 0x82fe56c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5690 - - -script/script.c:294: append command - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fe5580 - - -script/script.c:50: malloc 0x82fe5560 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fe5530 - - -script/script.c:50: malloc 0x82fe5510 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe54e0 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fe5440 - - -script/script.c:50: malloc 0x82fe5420 - - -script/lexer.c:322: token 289 text [feature_platform_search_hint] - - -script/script.c:50: malloc 0x82fe53f0 - - -script/script.c:50: malloc 0x82fe53b0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe54b0 - - -script/script.c:50: malloc 0x82fe5390 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5360 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fe5330 - - -script/script.c:50: malloc 0x82fe5310 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe52e0 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fe52b0 - - -script/script.c:50: malloc 0x82fe5290 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5260 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fe5230 - - -script/script.c:50: malloc 0x82fe5210 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe51e0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fe51b0 - - -script/script.c:50: malloc 0x82fe5190 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5160 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe5140 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fe5110 - - -script/script.c:50: malloc 0x82fe50f0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe50c0 - - -script/script.c:50: malloc 0x82fe50a0 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82fe5070 - - -script/script.c:50: malloc 0x82fe5050 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5020 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82fe4ee0 - - -script/script.c:50: malloc 0x82fe4eb0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4e80 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82fe4e50 - - -script/script.c:50: malloc 0x82fe4e20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4df0 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82fe4dc0 - - -script/script.c:50: malloc 0x82fe4d90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4d60 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82fe4c50 - - -script/script.c:50: malloc 0x82fe4c10 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4be0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4bb0 - - -script/script.c:50: malloc 0x82fe4b90 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe4b60 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe4b40 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82fe4a60 - - -script/script.c:50: malloc 0x82fe4a40 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4a10 - - -script/script.c:50: malloc 0x82fe49f0 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82fe49c0 - - -script/script.c:50: malloc 0x82fe49a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4970 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82fe4830 - - -script/script.c:50: malloc 0x82fe4800 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe47d0 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82fe47a0 - - -script/script.c:50: malloc 0x82fe4770 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4740 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82fe4710 - - -script/script.c:50: malloc 0x82fe46e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe46b0 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82fe4680 - - -script/script.c:50: malloc 0x82fe4640 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4610 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe45e0 - - -script/script.c:50: malloc 0x82fe45c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe4590 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe4570 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe4490 - - -script/script.c:50: malloc 0x82fe4470 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe4440 - - -script/script.c:294: append command - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4410 - - -script/script.c:50: malloc 0x82fe43f0 - - -script/lexer.c:322: token 289 text [font=] - - -script/script.c:50: malloc 0x82fe42b0 - - -script/script.c:50: malloc 0x82fe4290 - - -script/lexer.c:322: token 289 text [/usr/share/grub/unicode.pf2] - - -script/script.c:50: malloc 0x82fe4260 - - -script/script.c:50: malloc 0x82fe4220 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe41f0 - - -script/script.c:50: malloc 0x82fe41d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe41a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4170 - - -script/script.c:50: malloc 0x82fe4150 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe4120 - - -script/script.c:294: append command - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe4040 - - -script/script.c:50: malloc 0x82fe4020 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe3ff0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe3fc0 - - -script/script.c:50: malloc 0x82fe3fa0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe40f0 - - -script/script.c:50: malloc 0x82fe40d0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe3f80 - - -script/script.c:65: free 0x82fe3f80 - - -script/script.c:65: free 0x82fe40d0 - - -script/script.c:65: free 0x82fe40f0 - - -script/script.c:65: free 0x82fe3fa0 - - -script/script.c:65: free 0x82fe3fc0 - - -script/script.c:65: free 0x82fe3ff0 - - -script/script.c:65: free 0x82fe4020 - - -script/script.c:65: free 0x82fe4040 - - -script/script.c:65: free 0x82fe4120 - - -script/script.c:65: free 0x82fe4150 - - -script/script.c:65: free 0x82fe4170 - - -script/script.c:65: free 0x82fe41a0 - - -script/script.c:65: free 0x82fe41d0 - - -script/script.c:65: free 0x82fe41f0 - - -script/script.c:65: free 0x82fe4220 - - -script/script.c:65: free 0x82fe4260 - - -script/script.c:65: free 0x82fe4290 - - -script/script.c:65: free 0x82fe42b0 - - -script/script.c:65: free 0x82fe43f0 - - -script/script.c:65: free 0x82fe4410 - - -script/script.c:65: free 0x82fe4440 - - -script/script.c:65: free 0x82fe4470 - - -script/script.c:65: free 0x82fe4490 - - -script/script.c:65: free 0x82fe4570 - - -script/script.c:65: free 0x82fe4590 - - -script/script.c:65: free 0x82fe45c0 - - -script/script.c:65: free 0x82fe45e0 - - -script/script.c:65: free 0x82fe4610 - - -script/script.c:65: free 0x82fe4640 - - -script/script.c:65: free 0x82fe4680 - - -script/script.c:65: free 0x82fe46b0 - - -script/script.c:65: free 0x82fe46e0 - - -script/script.c:65: free 0x82fe4710 - - -script/script.c:65: free 0x82fe4740 - - -script/script.c:65: free 0x82fe4770 - - -script/script.c:65: free 0x82fe47a0 - - -script/script.c:65: free 0x82fe47d0 - - -script/script.c:65: free 0x82fe4800 - - -script/script.c:65: free 0x82fe4830 - - -script/script.c:65: free 0x82fe4970 - - -script/script.c:65: free 0x82fe49a0 - - -script/script.c:65: free 0x82fe49c0 - - -script/script.c:65: free 0x82fe49f0 - - -script/script.c:65: free 0x82fe4a10 - - -script/script.c:65: free 0x82fe4a40 - - -script/script.c:65: free 0x82fe4a60 - - -script/script.c:65: free 0x82fe4b40 - - -script/script.c:65: free 0x82fe4b60 - - -script/script.c:65: free 0x82fe4b90 - - -script/script.c:65: free 0x82fe4bb0 - - -script/script.c:65: free 0x82fe4be0 - - -script/script.c:65: free 0x82fe4c10 - - -script/script.c:65: free 0x82fe4c50 - - -script/script.c:65: free 0x82fe4d60 - - -script/script.c:65: free 0x82fe4d90 - - -script/script.c:65: free 0x82fe4dc0 - - -script/script.c:65: free 0x82fe4df0 - - -script/script.c:65: free 0x82fe4e20 - - -script/script.c:65: free 0x82fe4e50 - - -script/script.c:65: free 0x82fe4e80 - - -script/script.c:65: free 0x82fe4eb0 - - -script/script.c:65: free 0x82fe4ee0 - - -script/script.c:65: free 0x82fe5020 - - -script/script.c:65: free 0x82fe5050 - - -script/script.c:65: free 0x82fe5070 - - -script/script.c:65: free 0x82fe50a0 - - -script/script.c:65: free 0x82fe50c0 - - -script/script.c:65: free 0x82fe50f0 - - -script/script.c:65: free 0x82fe5110 - - -script/script.c:65: free 0x82fe5140 - - -script/script.c:65: free 0x82fe5160 - - -script/script.c:65: free 0x82fe5190 - - -script/script.c:65: free 0x82fe51b0 - - -script/script.c:65: free 0x82fe51e0 - - -script/script.c:65: free 0x82fe5210 - - -script/script.c:65: free 0x82fe5230 - - -script/script.c:65: free 0x82fe5260 - - -script/script.c:65: free 0x82fe5290 - - -script/script.c:65: free 0x82fe52b0 - - -script/script.c:65: free 0x82fe52e0 - - -script/script.c:65: free 0x82fe5310 - - -script/script.c:65: free 0x82fe5330 - - -script/script.c:65: free 0x82fe5360 - - -script/script.c:65: free 0x82fe5390 - - -script/script.c:65: free 0x82fe54b0 - - -script/script.c:65: free 0x82fe53b0 - - -script/script.c:65: free 0x82fe53f0 - - -script/script.c:65: free 0x82fe5420 - - -script/script.c:65: free 0x82fe5440 - - -script/script.c:65: free 0x82fe54e0 - - -script/script.c:65: free 0x82fe5510 - - -script/script.c:65: free 0x82fe5530 - - -script/script.c:65: free 0x82fe5560 - - -script/script.c:65: free 0x82fe5580 - - -script/script.c:65: free 0x82fe5690 - - -script/script.c:65: free 0x82fe56c0 - - -script/script.c:65: free 0x82fe56e0 - - -script/script.c:65: free 0x82fe5710 - - -script/script.c:65: free 0x82fe5740 - - -script/script.c:65: free 0x82fe5760 - - -script/script.c:65: free 0x82fe5790 - - -script/script.c:65: free 0x82fe57c0 - - -script/script.c:65: free 0x82fe57e0 - - -script/script.c:65: free 0x82fe58c0 - - -script/script.c:65: free 0x82fe58e0 - - -script/script.c:65: free 0x82fe5910 - - -script/script.c:65: free 0x82fe5930 - - -script/script.c:65: free 0x82fe5960 - - -script/script.c:65: free 0x82fe5990 - - -script/script.c:65: free 0x82fe59c0 - - -script/script.c:65: free 0x82fe59f0 - - -script/script.c:65: free 0x82fe5a20 - - -script/script.c:65: free 0x82fe5a40 - - -script/script.c:65: free 0x82fe5b30 - - -script/script.c:65: free 0x82fe5b50 - - -script/script.c:65: free 0x82fe5b80 - - -script/script.c:65: free 0x82fe5ba0 - - -script/script.c:65: free 0x82fe5c80 - - -script/script.c:65: free 0x82fe5ca0 - - -script/script.c:65: free 0x82fe5cd0 - - -script/script.c:65: free 0x82fe5cf0 - - -script/script.c:65: free 0x82fe5d20 - - -script/script.c:65: free 0x82fe5d50 - - -script/script.c:65: free 0x82fe5d80 - - -script/script.c:65: free 0x82fe5e70 - - -script/script.c:65: free 0x82fe5e90 - - -script/script.c:65: free 0x82fe5ec0 - - -script/script.c:65: free 0x82fe5ee0 - - -script/script.c:65: free 0x82fe5f10 - - -script/script.c:65: free 0x82fe5f30 - - -script/script.c:65: free 0x82fe5f60 - - -script/script.c:65: free 0x82fe5f80 - - -script/script.c:65: free 0x82fe5fb0 - - -script/script.c:65: free 0x82fe5fe0 - - -script/script.c:65: free 0x82fe6000 - - -script/script.c:65: free 0x82fe6030 - - -script/script.c:65: free 0x82fe6060 - - -script/script.c:65: free 0x82fe6080 - - -script/script.c:65: free 0x82fe60b0 - - -script/script.c:65: free 0x82fe60e0 - - -script/script.c:65: free 0x82fe6100 - - -script/script.c:65: free 0x82fe6130 - - -script/script.c:65: free 0x82fe6160 - - -script/script.c:65: free 0x82fe62f0 - - -script/script.c:65: free 0x82fe6180 - - -script/script.c:65: free 0x82fe61c0 - - -script/script.c:65: free 0x82fe6320 - - -script/script.c:65: free 0x82fe6340 - - -script/script.c:65: free 0x82fe7dc0 - - -script/script.c:65: free 0x82fe7df0 - - -script/script.c:65: free 0x82febd10 - - -script/script.c:65: free 0x82fedbf0 - - -script/script.c:65: free 0x82fede90 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedbe0 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82febd20 - - -script/script.c:65: free 0x82febd20 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedbe0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82febd10 - - -script/script.c:50: malloc 0x82fe81b0 - - -script/lexer.c:322: token 288 text [loadfont] - - -script/script.c:50: malloc 0x82fe8180 - - -script/script.c:50: malloc 0x82fe8160 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7de0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe61c0 - - -script/script.c:50: malloc 0x82fe61a0 - - -script/lexer.c:322: token 289 text [font] - - -script/script.c:50: malloc 0x82fe6170 - - -script/script.c:50: malloc 0x82fe6150 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:50: malloc 0x82fe6130 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6100 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fe60d0 - - -script/script.c:50: malloc 0x82fe60b0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe6080 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe6060 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fe6030 - - -script/script.c:50: malloc 0x82fe6010 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5fe0 - - -script/script.c:50: malloc 0x82fe5fc0 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe5ed0 - - -script/script.c:50: malloc 0x82fe5eb0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5e80 - - -script/lexer.c:322: token 289 text [gfxmode=auto] - - -script/script.c:50: malloc 0x82fe5d80 - - -script/script.c:50: malloc 0x82fe5d50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5d20 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5cf0 - - -script/script.c:50: malloc 0x82fe5cd0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5ca0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe5c80 - - -script/lexer.c:322: token 288 text [load_video] - - -script/script.c:50: malloc 0x82fe5a40 - - -script/script.c:50: malloc 0x82fe5a10 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe59e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe59b0 - - -script/script.c:50: malloc 0x82fe5990 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5960 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe57e0 - - -script/script.c:50: malloc 0x82fe57c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5790 - - -script/lexer.c:322: token 288 text [gfxterm] - - -script/script.c:50: malloc 0x82fe5760 - - -script/script.c:50: malloc 0x82fe5740 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5710 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe56e0 - - -script/script.c:50: malloc 0x82fe56c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5690 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe54b0 - - -script/script.c:50: malloc 0x82fe5490 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5460 - - -script/lexer.c:322: token 289 text [locale_dir=] - - -script/script.c:50: malloc 0x82fe53c0 - - -script/script.c:50: malloc 0x82fe5390 - - -script/lexer.c:322: token 289 text [prefix] - - -script/script.c:50: malloc 0x82fe5360 - - -script/script.c:50: malloc 0x82fe5340 - - -script/lexer.c:322: token 289 text [/locale] - - -script/script.c:50: malloc 0x82fe5310 - - -script/script.c:50: malloc 0x82fe52f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe52c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5290 - - -script/script.c:50: malloc 0x82fe5270 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5240 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe5150 - - -script/script.c:50: malloc 0x82fe5130 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5100 - - -script/lexer.c:322: token 289 text [lang=en_US] - - -script/script.c:50: malloc 0x82fe50d0 - - -script/script.c:50: malloc 0x82fe50a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5070 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5040 - - -script/script.c:50: malloc 0x82fe5020 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe4ee0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe4df0 - - -script/script.c:50: malloc 0x82fe4dd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4da0 - - -script/lexer.c:322: token 288 text [gettext] - - -script/script.c:50: malloc 0x82fe4d70 - - -script/script.c:50: malloc 0x82fe4d50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4d20 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4cf0 - - -script/script.c:50: malloc 0x82fe4cd0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe4ca0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe4bc0 - - -script/script.c:50: malloc 0x82fe4ba0 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe4b70 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4b40 - - -script/script.c:50: malloc 0x82fe4a70 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe4c70 - - -script/script.c:50: malloc 0x82fe4c50 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe4a50 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2048 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2816 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=18176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605120 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34621504 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605184 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34624832 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fe0e10, size 0x34c0 - - -kern/dl.c:620: relocating to 0x82fefe70 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=0 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34624384 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fdf300, size 0x1af4 - - -kern/dl.c:620: relocating to 0x82fefa50 - - -kern/arm/dl.c:102: trampoline size c - - -kern/dl.c:553: flushing 0x18f4 bytes at 0x82fdd9f0 - - -kern/dl.c:643: module name: video - - -kern/dl.c:644: init function: 0x0 - - -kern/arm/dl.c:102: trampoline size 24 - - -kern/dl.c:553: flushing 0x34f8 bytes at 0x82fa8da0 - - -kern/dl.c:643: module name: font - - -kern/dl.c:644: init function: 0x82faa9b0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605248 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538240 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538304 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538368 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538432 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538496 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538560 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538624 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538688 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538752 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538816 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538880 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22538944 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22539008 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22539072 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22539136 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22539200 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34624512 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fef150, size 0x2d4 - - -kern/dl.c:620: relocating to 0x82fef650 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x10d bytes at 0x82fef510 - - -kern/dl.c:643: module name: all_video - - -kern/dl.c:644: init function: 0x0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34625344 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fe1db0, size 0x2560 - - -kern/dl.c:620: relocating to 0x82fef300 - - -kern/arm/dl.c:102: trampoline size c - - -kern/dl.c:553: flushing 0x2398 bytes at 0x82fdfa00 - - -kern/dl.c:643: module name: gfxterm - - -kern/dl.c:644: init function: 0x82fe0e48 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82fe4a50 - - -script/script.c:65: free 0x82fe4c50 - - -script/script.c:65: free 0x82fe4c70 - - -script/script.c:65: free 0x82fe4a70 - - -script/script.c:65: free 0x82fe4b40 - - -script/script.c:65: free 0x82fe4b70 - - -script/script.c:65: free 0x82fe4ba0 - - -script/script.c:65: free 0x82fe4bc0 - - -script/script.c:65: free 0x82fe4ca0 - - -script/script.c:65: free 0x82fe4cd0 - - -script/script.c:65: free 0x82fe4cf0 - - -script/script.c:65: free 0x82fe4d20 - - -script/script.c:65: free 0x82fe4d50 - - -script/script.c:65: free 0x82fe4d70 - - -script/script.c:65: free 0x82fe4da0 - - -script/script.c:65: free 0x82fe4dd0 - - -script/script.c:65: free 0x82fe4df0 - - -script/script.c:65: free 0x82fe4ee0 - - -script/script.c:65: free 0x82fe5020 - - -script/script.c:65: free 0x82fe5040 - - -script/script.c:65: free 0x82fe5070 - - -script/script.c:65: free 0x82fe50a0 - - -script/script.c:65: free 0x82fe50d0 - - -script/script.c:65: free 0x82fe5100 - - -script/script.c:65: free 0x82fe5130 - - -script/script.c:65: free 0x82fe5150 - - -script/script.c:65: free 0x82fe5240 - - -script/script.c:65: free 0x82fe5270 - - -script/script.c:65: free 0x82fe5290 - - -script/script.c:65: free 0x82fe52c0 - - -script/script.c:65: free 0x82fe52f0 - - -script/script.c:65: free 0x82fe5310 - - -script/script.c:65: free 0x82fe5340 - - -script/script.c:65: free 0x82fe5360 - - -script/script.c:65: free 0x82fe5390 - - -script/script.c:65: free 0x82fe53c0 - - -script/script.c:65: free 0x82fe5460 - - -script/script.c:65: free 0x82fe5490 - - -script/script.c:65: free 0x82fe54b0 - - -script/script.c:65: free 0x82fe5690 - - -script/script.c:65: free 0x82fe56c0 - - -script/script.c:65: free 0x82fe56e0 - - -script/script.c:65: free 0x82fe5710 - - -script/script.c:65: free 0x82fe5740 - - -script/script.c:65: free 0x82fe5760 - - -script/script.c:65: free 0x82fe5790 - - -script/script.c:65: free 0x82fe57c0 - - -script/script.c:65: free 0x82fe57e0 - - -script/script.c:65: free 0x82fe5960 - - -script/script.c:65: free 0x82fe5990 - - -script/script.c:65: free 0x82fe59b0 - - -script/script.c:65: free 0x82fe59e0 - - -script/script.c:65: free 0x82fe5a10 - - -script/script.c:65: free 0x82fe5a40 - - -script/script.c:65: free 0x82fe5c80 - - -script/script.c:65: free 0x82fe5ca0 - - -script/script.c:65: free 0x82fe5cd0 - - -script/script.c:65: free 0x82fe5cf0 - - -script/script.c:65: free 0x82fe5d20 - - -script/script.c:65: free 0x82fe5d50 - - -script/script.c:65: free 0x82fe5d80 - - -script/script.c:65: free 0x82fe5e80 - - -script/script.c:65: free 0x82fe5eb0 - - -script/script.c:65: free 0x82fe5ed0 - - -script/script.c:65: free 0x82fe5fc0 - - -script/script.c:65: free 0x82fe5fe0 - - -script/script.c:65: free 0x82fe6010 - - -script/script.c:65: free 0x82fe6030 - - -script/script.c:65: free 0x82fe6060 - - -script/script.c:65: free 0x82fe6080 - - -script/script.c:65: free 0x82fe60b0 - - -script/script.c:65: free 0x82fe60d0 - - -script/script.c:65: free 0x82fe6100 - - -script/script.c:65: free 0x82fe6130 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fe6150 - - -script/script.c:65: free 0x82fe6170 - - -script/script.c:65: free 0x82fe61a0 - - -script/script.c:65: free 0x82fe61c0 - - -script/script.c:65: free 0x82fe7de0 - - -script/script.c:65: free 0x82fe8160 - - -script/script.c:65: free 0x82fe8180 - - -script/script.c:65: free 0x82fe81b0 - - -script/script.c:65: free 0x82febd10 - - -script/lexer.c:322: token 288 text [terminal_output] - - -script/script.c:50: malloc 0x82fe21c0 - - -script/script.c:50: malloc 0x82fe2190 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe2160 - - -script/lexer.c:322: token 288 text [gfxterm] - - -script/script.c:50: malloc 0x82fe2130 - - -script/script.c:50: malloc 0x82fe2110 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe20e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe20b0 - - -script/script.c:50: malloc 0x82fe2090 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe2060 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe2280 - - -script/script.c:50: malloc 0x82fe2260 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe2040 - - -error: no suitable video mode found. - - -script/script.c:65: free 0x82fe2040 - - -script/script.c:65: free 0x82fe2260 - - -script/script.c:65: free 0x82fe2280 - - -script/script.c:65: free 0x82fe2060 - - -script/script.c:65: free 0x82fe2090 - - -script/script.c:65: free 0x82fe20b0 - - -script/script.c:65: free 0x82fe20e0 - - -script/script.c:65: free 0x82fe2110 - - -script/script.c:65: free 0x82fe2130 - - -script/script.c:65: free 0x82fe2160 - - -script/script.c:65: free 0x82fe2190 - - -script/script.c:65: free 0x82fe21c0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fe21a0 - - -script/script.c:50: malloc 0x82fe2180 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fe2050 - - -script/script.c:50: malloc 0x82fe2030 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe2000 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fe1f60 - - -script/script.c:50: malloc 0x82fe1f40 - - -script/lexer.c:322: token 289 text [feature_timeout_style] - - -script/script.c:50: malloc 0x82fe1f10 - - -script/script.c:50: malloc 0x82fe1ee0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe1fd0 - - -script/script.c:50: malloc 0x82fe1ec0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1e90 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fe1e60 - - -script/script.c:50: malloc 0x82fe1e40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1e10 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fe1de0 - - -script/script.c:50: malloc 0x82fdf480 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf450 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fdf420 - - -script/script.c:50: malloc 0x82fdf400 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf3d0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fdf3a0 - - -script/script.c:50: malloc 0x82fdf380 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdf350 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdcaf0 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fdcac0 - - -script/script.c:50: malloc 0x82fdcaa0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdca70 - - -script/script.c:50: malloc 0x82fdca50 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fdc960 - - -script/script.c:50: malloc 0x82fdc940 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc910 - - -script/lexer.c:322: token 289 text [timeout_style=menu] - - -script/script.c:50: malloc 0x82fdc8e0 - - -script/script.c:50: malloc 0x82fdc8b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc880 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdc850 - - -script/script.c:50: malloc 0x82fdc830 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdc800 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdc7e0 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fdc6f0 - - -script/script.c:50: malloc 0x82fdc6d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc6a0 - - -script/lexer.c:322: token 289 text [timeout=1000] - - -script/script.c:50: malloc 0x82fdc670 - - -script/script.c:50: malloc 0x82fdc640 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc610 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdc5e0 - - -script/script.c:50: malloc 0x82fdc5c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdc590 - - -script/script.c:294: append command - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82fdc4b0 - - -script/script.c:50: malloc 0x82fdc490 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdc460 - - -script/script.c:50: malloc 0x82fdc440 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fdc350 - - -script/script.c:50: malloc 0x82fa03c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa0390 - - -script/lexer.c:322: token 289 text [timeout=1000] - - -script/script.c:50: malloc 0x82fa0360 - - -script/script.c:50: malloc 0x82fa0330 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa0300 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fa02d0 - - -script/script.c:50: malloc 0x82fa02b0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fa0280 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fa0260 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fa0180 - - -script/script.c:50: malloc 0x82fa0160 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fa0130 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fa0100 - - -script/script.c:50: malloc 0x82fa00e0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fa0230 - - -script/script.c:50: malloc 0x82fa0210 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fa00c0 - - -script/script.c:65: free 0x82fa00c0 - - -script/script.c:65: free 0x82fa0210 - - -script/script.c:65: free 0x82fa0230 - - -script/script.c:65: free 0x82fa00e0 - - -script/script.c:65: free 0x82fa0100 - - -script/script.c:65: free 0x82fa0130 - - -script/script.c:65: free 0x82fa0160 - - -script/script.c:65: free 0x82fa0180 - - -script/script.c:65: free 0x82fa0260 - - -script/script.c:65: free 0x82fa0280 - - -script/script.c:65: free 0x82fa02b0 - - -script/script.c:65: free 0x82fa02d0 - - -script/script.c:65: free 0x82fa0300 - - -script/script.c:65: free 0x82fa0330 - - -script/script.c:65: free 0x82fa0360 - - -script/script.c:65: free 0x82fa0390 - - -script/script.c:65: free 0x82fa03c0 - - -script/script.c:65: free 0x82fdc350 - - -script/script.c:65: free 0x82fdc440 - - -script/script.c:65: free 0x82fdc460 - - -script/script.c:65: free 0x82fdc490 - - -script/script.c:65: free 0x82fdc4b0 - - -script/script.c:65: free 0x82fdc590 - - -script/script.c:65: free 0x82fdc5c0 - - -script/script.c:65: free 0x82fdc5e0 - - -script/script.c:65: free 0x82fdc610 - - -script/script.c:65: free 0x82fdc640 - - -script/script.c:65: free 0x82fdc670 - - -script/script.c:65: free 0x82fdc6a0 - - -script/script.c:65: free 0x82fdc6d0 - - -script/script.c:65: free 0x82fdc6f0 - - -script/script.c:65: free 0x82fdc7e0 - - -script/script.c:65: free 0x82fdc800 - - -script/script.c:65: free 0x82fdc830 - - -script/script.c:65: free 0x82fdc850 - - -script/script.c:65: free 0x82fdc880 - - -script/script.c:65: free 0x82fdc8b0 - - -script/script.c:65: free 0x82fdc8e0 - - -script/script.c:65: free 0x82fdc910 - - -script/script.c:65: free 0x82fdc940 - - -script/script.c:65: free 0x82fdc960 - - -script/script.c:65: free 0x82fdca50 - - -script/script.c:65: free 0x82fdca70 - - -script/script.c:65: free 0x82fdcaa0 - - -script/script.c:65: free 0x82fdcac0 - - -script/script.c:65: free 0x82fdcaf0 - - -script/script.c:65: free 0x82fdf350 - - -script/script.c:65: free 0x82fdf380 - - -script/script.c:65: free 0x82fdf3a0 - - -script/script.c:65: free 0x82fdf3d0 - - -script/script.c:65: free 0x82fdf400 - - -script/script.c:65: free 0x82fdf420 - - -script/script.c:65: free 0x82fdf450 - - -script/script.c:65: free 0x82fdf480 - - -script/script.c:65: free 0x82fe1de0 - - -script/script.c:65: free 0x82fe1e10 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e60 - - -script/script.c:65: free 0x82fe1e90 - - -script/script.c:65: free 0x82fe1ec0 - - -script/script.c:65: free 0x82fe1fd0 - - -script/script.c:65: free 0x82fe1ee0 - - -script/script.c:65: free 0x82fe1f10 - - -script/script.c:65: free 0x82fe1f40 - - -script/script.c:65: free 0x82fe1f60 - - -script/script.c:65: free 0x82fe2000 - - -script/script.c:65: free 0x82fe2030 - - -script/script.c:65: free 0x82fe2050 - - -script/script.c:65: free 0x82fe2180 - - -script/script.c:65: free 0x82fe21a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe2140 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe2110 - - -script/script.c:50: malloc 0x82fe20f0 - - -script/script.c:65: free 0x82fe20f0 - - -script/script.c:65: free 0x82fe2110 - - -script/script.c:65: free 0x82fe2140 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 288 text [menuentry] - - -script/script.c:50: malloc 0x82fe21c0 - - -script/script.c:50: malloc 0x82fe2190 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe2160 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe1e50 - - -script/script.c:50: malloc 0x82fe1e30 - - -script/lexer.c:322: token 289 text [Parabola GNU/Linux-libre, linux-libre - - -kernel] - - -script/script.c:50: malloc 0x82feed90 - - -script/script.c:50: malloc 0x82feed40 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe1f50 - - -script/script.c:50: malloc 0x82fdf480 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf450 - - -script/lexer.c:322: token 289 text [--class] - - -script/script.c:50: malloc 0x82fdf420 - - -script/script.c:50: malloc 0x82fdf400 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf3d0 - - -script/lexer.c:322: token 288 text [parabola] - - -script/script.c:50: malloc 0x82fdf3a0 - - -script/script.c:50: malloc 0x82fdf380 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf350 - - -script/lexer.c:322: token 289 text [--class] - - -script/script.c:50: malloc 0x82fdcae0 - - -script/script.c:50: malloc 0x82fdcac0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdca90 - - -script/lexer.c:322: token 289 text [gnu-linux] - - -script/script.c:50: malloc 0x82fdca60 - - -script/script.c:50: malloc 0x82fdca30 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc960 - - -script/lexer.c:322: token 289 text [--class] - - -script/script.c:50: malloc 0x82fdc930 - - -script/script.c:50: malloc 0x82fdc910 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc8e0 - - -script/lexer.c:322: token 288 text [gnu] - - -script/script.c:50: malloc 0x82fdc8b0 - - -script/script.c:50: malloc 0x82fdc890 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc860 - - -script/lexer.c:322: token 289 text [--class] - - -script/script.c:50: malloc 0x82fdc830 - - -script/script.c:50: malloc 0x82fdc810 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc7e0 - - -script/lexer.c:322: token 288 text [os] - - -script/script.c:50: malloc 0x82fdc6f0 - - -script/script.c:50: malloc 0x82fdc6d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc6a0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdc600 - - -script/script.c:50: malloc 0x82fdc5e0 - - -script/lexer.c:322: token 289 text [menuentry_id_option] - - -script/script.c:50: malloc 0x82fdc4b0 - - -script/script.c:50: malloc 0x82fdc480 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdc670 - - -script/script.c:50: malloc 0x82fdc5c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc590 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fa03b0 - - -script/script.c:50: malloc 0x82fa0390 - - -script/lexer.c:322: token 289 text - - -[gnulinux-linux-libre-advanced-5f96 - - -769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82fa0360 - - -script/script.c:50: malloc 0x82fa0300 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdc350 - - -script/script.c:50: malloc 0x82fa02e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa02b0 - - -script/lexer.c:322: token 266 text [{] - - -script/script.c:50: malloc 0x82fa0280 - - -script/script.c:50: malloc 0x82fa0260 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fa0120 - - -script/script.c:50: malloc 0x82fa0100 - - -script/lexer.c:322: token 288 text [load_video] - - -script/script.c:50: malloc 0x82fa0020 - - -script/script.c:50: malloc 0x82f9fff0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ffc0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9ff90 - - -script/script.c:50: malloc 0x82f9ff70 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9ff40 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9ff20 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82f9fe30 - - -script/script.c:50: malloc 0x82f9fe10 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fde0 - - -script/lexer.c:322: token 289 text [gfxpayload=keep] - - -script/script.c:50: malloc 0x82f9fdb0 - - -script/script.c:50: malloc 0x82f9fd80 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fd50 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9fd20 - - -script/script.c:50: malloc 0x82f9fd00 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9fcd0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82f9fbf0 - - -script/script.c:50: malloc 0x82f9fbd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fba0 - - -script/lexer.c:322: token 288 text [gzio] - - -script/script.c:50: malloc 0x82f9fb70 - - -script/script.c:50: malloc 0x82f9fb50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fb20 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9faf0 - - -script/script.c:50: malloc 0x82f9fad0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9faa0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82f9f9b0 - - -script/script.c:50: malloc 0x82f9f990 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f960 - - -script/lexer.c:322: token 288 text [part_msdos] - - -script/script.c:50: malloc 0x82f9f930 - - -script/script.c:50: malloc 0x82f9f900 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f8d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f8a0 - - -script/script.c:50: malloc 0x82f9f880 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9f850 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82f9f770 - - -script/script.c:50: malloc 0x82f9f750 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f720 - - -script/lexer.c:322: token 288 text [ext2] - - -script/script.c:50: malloc 0x82f9f6f0 - - -script/script.c:50: malloc 0x82f9f6d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f6a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f670 - - -script/script.c:50: malloc 0x82f9f650 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9f620 - - -script/script.c:294: append command - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82f9f510 - - -script/script.c:50: malloc 0x82f9f4f0 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82f9f4c0 - - -script/script.c:50: malloc 0x82f9f4a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f470 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82f9f3d0 - - -script/script.c:50: malloc 0x82f9f3b0 - - -script/lexer.c:322: token 289 text [feature_platform_search_hint] - - -script/script.c:50: malloc 0x82f9f380 - - -script/script.c:50: malloc 0x82f9f340 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9f440 - - -script/script.c:50: malloc 0x82f9f320 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f2f0 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82f9f2c0 - - -script/script.c:50: malloc 0x82f9f2a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f270 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82f9f240 - - -script/script.c:50: malloc 0x82f9f220 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f1f0 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82f9f1c0 - - -script/script.c:50: malloc 0x82f9f1a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f170 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82f9f140 - - -script/script.c:50: malloc 0x82f9f120 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9f0f0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9f0d0 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82f9f0a0 - - -script/script.c:50: malloc 0x82f9f080 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f050 - - -script/script.c:50: malloc 0x82f9f030 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82f9f000 - - -script/script.c:50: malloc 0x82f9efe0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9efb0 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82f9ee70 - - -script/script.c:50: malloc 0x82f9ee40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ee10 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82f9ede0 - - -script/script.c:50: malloc 0x82f9edb0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ed80 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82f9ed50 - - -script/script.c:50: malloc 0x82f9ed20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ecf0 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82f9ecc0 - - -script/script.c:50: malloc 0x82f9ec80 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ec50 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9ec20 - - -script/script.c:50: malloc 0x82f9ec00 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9ebd0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9ebb0 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82f94770 - - -script/script.c:50: malloc 0x82f94750 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f94720 - - -script/script.c:50: malloc 0x82f94700 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82f946d0 - - -script/script.c:50: malloc 0x82f946b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f94680 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82f94540 - - -script/script.c:50: malloc 0x82f94510 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f944e0 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82f944b0 - - -script/script.c:50: malloc 0x82f94480 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f94450 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82fa0230 - - -script/script.c:50: malloc 0x82fa0200 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa01d0 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82f94210 - - -script/script.c:50: malloc 0x82f941d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f941a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f94170 - - -script/script.c:50: malloc 0x82f94150 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f94120 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f94100 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82f94020 - - -script/script.c:50: malloc 0x82f94000 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82f93fd0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f93fa0 - - -script/script.c:50: malloc 0x82f93f80 - - -script/lexer.c:322: token 288 text [echo] - - -script/script.c:50: malloc 0x82f93e80 - - -script/script.c:50: malloc 0x82f93e60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93e30 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f93d80 - - -script/script.c:50: malloc 0x82f93d60 - - -script/lexer.c:322: token 289 text [Loading linux-libre kernel ...] - - -script/script.c:50: malloc 0x82f93d30 - - -script/script.c:50: malloc 0x82f93cf0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f93e00 - - -script/script.c:50: malloc 0x82f93cd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93ca0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f93c70 - - -script/script.c:50: malloc 0x82f93c50 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f93c20 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [linux] - - -script/script.c:50: malloc 0x82f93bf0 - - -script/script.c:50: malloc 0x82f93bd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93ba0 - - -script/lexer.c:322: token 289 text [/boot/vmlinuz-linux-libre] - - -script/script.c:50: malloc 0x82f93a40 - - -script/script.c:50: malloc 0x82f93a00 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f939d0 - - -script/lexer.c:322: token 289 text [root=/dev/mmcblk0p1] - - -script/script.c:50: malloc 0x82f939a0 - - -script/script.c:50: malloc 0x82f93970 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93940 - - -script/lexer.c:322: token 288 text [rw] - - -script/script.c:50: malloc 0x82f93910 - - -script/script.c:50: malloc 0x82f938f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f938c0 - - -script/lexer.c:322: token 288 text [debug] - - -script/script.c:50: malloc 0x82f93890 - - -script/script.c:50: malloc 0x82f93870 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93840 - - -script/lexer.c:322: token 288 text [ignore_loglevel] - - -script/script.c:50: malloc 0x82f93810 - - -script/script.c:50: malloc 0x82f937e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f937b0 - - -script/lexer.c:322: token 289 text [earlyprintk=serial,keep] - - -script/script.c:50: malloc 0x82f93780 - - -script/script.c:50: malloc 0x82f93750 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93720 - - -script/lexer.c:322: token 289 text [log_buf_len=16M] - - -script/script.c:50: malloc 0x82f936f0 - - -script/script.c:50: malloc 0x82f936c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93690 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f93660 - - -script/script.c:50: malloc 0x82f93640 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f93610 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [echo] - - -script/script.c:50: malloc 0x82f93510 - - -script/script.c:50: malloc 0x82f934f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f934c0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f93410 - - -script/script.c:50: malloc 0x82f933f0 - - -script/lexer.c:322: token 289 text [Loading devices tree file ...] - - -script/script.c:50: malloc 0x82f933c0 - - -script/script.c:50: malloc 0x82f93380 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f93490 - - -script/script.c:50: malloc 0x82f93360 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93330 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f93300 - - -script/script.c:50: malloc 0x82f932e0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f932b0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [devicetree] - - -script/script.c:50: malloc 0x82f931a0 - - -script/script.c:50: malloc 0x82f93170 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93140 - - -script/lexer.c:322: token 289 text - - -[/boot/dtbs/linux-libre/am335x-bone - - -black.dtb] - - -script/script.c:50: malloc 0x82f94420 - - -script/script.c:50: malloc 0x82f943d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f943a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f94370 - - -script/script.c:50: malloc 0x82f94350 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f94320 - - -script/script.c:294: append command - - -script/lexer.c:322: token 267 text [}] - - -script/script.c:50: malloc 0x82f93b70 - - -script/script.c:50: malloc 0x82f92d10 - - -script/script.c:50: malloc 0x82f92ac0 - - -script/script.c:50: malloc 0x82f93110 - - -script/script.c:50: malloc 0x82f92ed0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f92e70 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f92e40 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f92e10 - - -script/script.c:50: malloc 0x82f92df0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82f942f0 - - -script/script.c:50: malloc 0x82f942d0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f942b0 - - -script/script.c:65: free 0x82f942b0 - - -script/script.c:65: free 0x82f942d0 - - -script/script.c:65: free 0x82f942f0 - - -script/script.c:65: free 0x82f92df0 - - -script/script.c:65: free 0x82f92e10 - - -script/script.c:65: free 0x82f92e40 - - -script/script.c:65: free 0x82f92e70 - - -script/script.c:65: free 0x82f92ed0 - - -script/script.c:65: free 0x82f93110 - - -script/script.c:65: free 0x82f92ac0 - - -script/script.c:65: free 0x82fa0260 - - -script/script.c:65: free 0x82fa0280 - - -script/script.c:65: free 0x82fa02b0 - - -script/script.c:65: free 0x82fa02e0 - - -script/script.c:65: free 0x82fdc350 - - -script/script.c:65: free 0x82fa0300 - - -script/script.c:65: free 0x82fa0360 - - -script/script.c:65: free 0x82fa0390 - - -script/script.c:65: free 0x82fa03b0 - - -script/script.c:65: free 0x82fdc590 - - -script/script.c:65: free 0x82fdc5c0 - - -script/script.c:65: free 0x82fdc670 - - -script/script.c:65: free 0x82fdc480 - - -script/script.c:65: free 0x82fdc4b0 - - -script/script.c:65: free 0x82fdc5e0 - - -script/script.c:65: free 0x82fdc600 - - -script/script.c:65: free 0x82fdc6a0 - - -script/script.c:65: free 0x82fdc6d0 - - -script/script.c:65: free 0x82fdc6f0 - - -script/script.c:65: free 0x82fdc7e0 - - -script/script.c:65: free 0x82fdc810 - - -script/script.c:65: free 0x82fdc830 - - -script/script.c:65: free 0x82fdc860 - - -script/script.c:65: free 0x82fdc890 - - -script/script.c:65: free 0x82fdc8b0 - - -script/script.c:65: free 0x82fdc8e0 - - -script/script.c:65: free 0x82fdc910 - - -script/script.c:65: free 0x82fdc930 - - -script/script.c:65: free 0x82fdc960 - - -script/script.c:65: free 0x82fdca30 - - -script/script.c:65: free 0x82fdca60 - - -script/script.c:65: free 0x82fdca90 - - -script/script.c:65: free 0x82fdcac0 - - -script/script.c:65: free 0x82fdcae0 - - -script/script.c:65: free 0x82fdf350 - - -script/script.c:65: free 0x82fdf380 - - -script/script.c:65: free 0x82fdf3a0 - - -script/script.c:65: free 0x82fdf3d0 - - -script/script.c:65: free 0x82fdf400 - - -script/script.c:65: free 0x82fdf420 - - -script/script.c:65: free 0x82fdf450 - - -script/script.c:65: free 0x82fdf480 - - -script/script.c:65: free 0x82fe1f50 - - -script/script.c:65: free 0x82feed40 - - -script/script.c:65: free 0x82feed90 - - -script/script.c:65: free 0x82fe1e30 - - -script/script.c:65: free 0x82fe1e50 - - -script/script.c:65: free 0x82fe2160 - - -script/script.c:65: free 0x82fe2190 - - -script/script.c:65: free 0x82fe21c0 - - -script/script.c:65: free 0x82f92d10 - - -script/script.c:65: free 0x82f93b70 - - -script/script.c:65: free 0x82f94320 - - -script/script.c:65: free 0x82f94350 - - -script/script.c:65: free 0x82f94370 - - -script/script.c:65: free 0x82f943a0 - - -script/script.c:65: free 0x82f943d0 - - -script/script.c:65: free 0x82f94420 - - -script/script.c:65: free 0x82f93140 - - -script/script.c:65: free 0x82f93170 - - -script/script.c:65: free 0x82f931a0 - - -script/script.c:65: free 0x82f932b0 - - -script/script.c:65: free 0x82f932e0 - - -script/script.c:65: free 0x82f93300 - - -script/script.c:65: free 0x82f93330 - - -script/script.c:65: free 0x82f93360 - - -script/script.c:65: free 0x82f93490 - - -script/script.c:65: free 0x82f93380 - - -script/script.c:65: free 0x82f933c0 - - -script/script.c:65: free 0x82f933f0 - - -script/script.c:65: free 0x82f93410 - - -script/script.c:65: free 0x82f934c0 - - -script/script.c:65: free 0x82f934f0 - - -script/script.c:65: free 0x82f93510 - - -script/script.c:65: free 0x82f93610 - - -script/script.c:65: free 0x82f93640 - - -script/script.c:65: free 0x82f93660 - - -script/script.c:65: free 0x82f93690 - - -script/script.c:65: free 0x82f936c0 - - -script/script.c:65: free 0x82f936f0 - - -script/script.c:65: free 0x82f93720 - - -script/script.c:65: free 0x82f93750 - - -script/script.c:65: free 0x82f93780 - - -script/script.c:65: free 0x82f937b0 - - -script/script.c:65: free 0x82f937e0 - - -script/script.c:65: free 0x82f93810 - - -script/script.c:65: free 0x82f93840 - - -script/script.c:65: free 0x82f93870 - - -script/script.c:65: free 0x82f93890 - - -script/script.c:65: free 0x82f938c0 - - -script/script.c:65: free 0x82f938f0 - - -script/script.c:65: free 0x82f93910 - - -script/script.c:65: free 0x82f93940 - - -script/script.c:65: free 0x82f93970 - - -script/script.c:65: free 0x82f939a0 - - -script/script.c:65: free 0x82f939d0 - - -script/script.c:65: free 0x82f93a00 - - -script/script.c:65: free 0x82f93a40 - - -script/script.c:65: free 0x82f93ba0 - - -script/script.c:65: free 0x82f93bd0 - - -script/script.c:65: free 0x82f93bf0 - - -script/script.c:65: free 0x82f93c20 - - -script/script.c:65: free 0x82f93c50 - - -script/script.c:65: free 0x82f93c70 - - -script/script.c:65: free 0x82f93ca0 - - -script/script.c:65: free 0x82f93cd0 - - -script/script.c:65: free 0x82f93e00 - - -script/script.c:65: free 0x82f93cf0 - - -script/script.c:65: free 0x82f93d30 - - -script/script.c:65: free 0x82f93d60 - - -script/script.c:65: free 0x82f93d80 - - -script/script.c:65: free 0x82f93e30 - - -script/script.c:65: free 0x82f93e60 - - -script/script.c:65: free 0x82f93e80 - - -script/script.c:65: free 0x82f93f80 - - -script/script.c:65: free 0x82f93fa0 - - -script/script.c:65: free 0x82f93fd0 - - -script/script.c:65: free 0x82f94000 - - -script/script.c:65: free 0x82f94020 - - -script/script.c:65: free 0x82f94100 - - -script/script.c:65: free 0x82f94120 - - -script/script.c:65: free 0x82f94150 - - -script/script.c:65: free 0x82f94170 - - -script/script.c:65: free 0x82f941a0 - - -script/script.c:65: free 0x82f941d0 - - -script/script.c:65: free 0x82f94210 - - -script/script.c:65: free 0x82fa01d0 - - -script/script.c:65: free 0x82fa0200 - - -script/script.c:65: free 0x82fa0230 - - -script/script.c:65: free 0x82f94450 - - -script/script.c:65: free 0x82f94480 - - -script/script.c:65: free 0x82f944b0 - - -script/script.c:65: free 0x82f944e0 - - -script/script.c:65: free 0x82f94510 - - -script/script.c:65: free 0x82f94540 - - -script/script.c:65: free 0x82f94680 - - -script/script.c:65: free 0x82f946b0 - - -script/script.c:65: free 0x82f946d0 - - -script/script.c:65: free 0x82f94700 - - -script/script.c:65: free 0x82f94720 - - -script/script.c:65: free 0x82f94750 - - -script/script.c:65: free 0x82f94770 - - -script/script.c:65: free 0x82f9ebb0 - - -script/script.c:65: free 0x82f9ebd0 - - -script/script.c:65: free 0x82f9ec00 - - -script/script.c:65: free 0x82f9ec20 - - -script/script.c:65: free 0x82f9ec50 - - -script/script.c:65: free 0x82f9ec80 - - -script/script.c:65: free 0x82f9ecc0 - - -script/script.c:65: free 0x82f9ecf0 - - -script/script.c:65: free 0x82f9ed20 - - -script/script.c:65: free 0x82f9ed50 - - -script/script.c:65: free 0x82f9ed80 - - -script/script.c:65: free 0x82f9edb0 - - -script/script.c:65: free 0x82f9ede0 - - -script/script.c:65: free 0x82f9ee10 - - -script/script.c:65: free 0x82f9ee40 - - -script/script.c:65: free 0x82f9ee70 - - -script/script.c:65: free 0x82f9efb0 - - -script/script.c:65: free 0x82f9efe0 - - -script/script.c:65: free 0x82f9f000 - - -script/script.c:65: free 0x82f9f030 - - -script/script.c:65: free 0x82f9f050 - - -script/script.c:65: free 0x82f9f080 - - -script/script.c:65: free 0x82f9f0a0 - - -script/script.c:65: free 0x82f9f0d0 - - -script/script.c:65: free 0x82f9f0f0 - - -script/script.c:65: free 0x82f9f120 - - -script/script.c:65: free 0x82f9f140 - - -script/script.c:65: free 0x82f9f170 - - -script/script.c:65: free 0x82f9f1a0 - - -script/script.c:65: free 0x82f9f1c0 - - -script/script.c:65: free 0x82f9f1f0 - - -script/script.c:65: free 0x82f9f220 - - -script/script.c:65: free 0x82f9f240 - - -script/script.c:65: free 0x82f9f270 - - -script/script.c:65: free 0x82f9f2a0 - - -script/script.c:65: free 0x82f9f2c0 - - -script/script.c:65: free 0x82f9f2f0 - - -script/script.c:65: free 0x82f9f320 - - -script/script.c:65: free 0x82f9f440 - - -script/script.c:65: free 0x82f9f340 - - -script/script.c:65: free 0x82f9f380 - - -script/script.c:65: free 0x82f9f3b0 - - -script/script.c:65: free 0x82f9f3d0 - - -script/script.c:65: free 0x82f9f470 - - -script/script.c:65: free 0x82f9f4a0 - - -script/script.c:65: free 0x82f9f4c0 - - -script/script.c:65: free 0x82f9f4f0 - - -script/script.c:65: free 0x82f9f510 - - -script/script.c:65: free 0x82f9f620 - - -script/script.c:65: free 0x82f9f650 - - -script/script.c:65: free 0x82f9f670 - - -script/script.c:65: free 0x82f9f6a0 - - -script/script.c:65: free 0x82f9f6d0 - - -script/script.c:65: free 0x82f9f6f0 - - -script/script.c:65: free 0x82f9f720 - - -script/script.c:65: free 0x82f9f750 - - -script/script.c:65: free 0x82f9f770 - - -script/script.c:65: free 0x82f9f850 - - -script/script.c:65: free 0x82f9f880 - - -script/script.c:65: free 0x82f9f8a0 - - -script/script.c:65: free 0x82f9f8d0 - - -script/script.c:65: free 0x82f9f900 - - -script/script.c:65: free 0x82f9f930 - - -script/script.c:65: free 0x82f9f960 - - -script/script.c:65: free 0x82f9f990 - - -script/script.c:65: free 0x82f9f9b0 - - -script/script.c:65: free 0x82f9faa0 - - -script/script.c:65: free 0x82f9fad0 - - -script/script.c:65: free 0x82f9faf0 - - -script/script.c:65: free 0x82f9fb20 - - -script/script.c:65: free 0x82f9fb50 - - -script/script.c:65: free 0x82f9fb70 - - -script/script.c:65: free 0x82f9fba0 - - -script/script.c:65: free 0x82f9fbd0 - - -script/script.c:65: free 0x82f9fbf0 - - -script/script.c:65: free 0x82f9fcd0 - - -script/script.c:65: free 0x82f9fd00 - - -script/script.c:65: free 0x82f9fd20 - - -script/script.c:65: free 0x82f9fd50 - - -script/script.c:65: free 0x82f9fd80 - - -script/script.c:65: free 0x82f9fdb0 - - -script/script.c:65: free 0x82f9fde0 - - -script/script.c:65: free 0x82f9fe10 - - -script/script.c:65: free 0x82f9fe30 - - -script/script.c:65: free 0x82f9ff20 - - -script/script.c:65: free 0x82f9ff40 - - -script/script.c:65: free 0x82f9ff70 - - -script/script.c:65: free 0x82f9ff90 - - -script/script.c:65: free 0x82f9ffc0 - - -script/script.c:65: free 0x82f9fff0 - - -script/script.c:65: free 0x82fa0020 - - -script/script.c:65: free 0x82fa0100 - - -script/script.c:65: free 0x82fa0120 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe1fc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fc0 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe1fc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fc0 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe1fc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fc0 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe1fc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fc0 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe1fc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fc0 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fe1e40 - - -script/script.c:50: malloc 0x82fe1e20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1df0 - - -script/lexer.c:322: token 289 text [-f] - - -script/script.c:50: malloc 0x82fdf470 - - -script/script.c:50: malloc 0x82fdf450 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf420 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdf380 - - -script/script.c:50: malloc 0x82fdf360 - - -script/lexer.c:322: token 289 text [config_directory] - - -script/script.c:50: malloc 0x82fdcae0 - - -script/script.c:50: malloc 0x82fdcab0 - - -script/lexer.c:322: token 289 text [/custom.cfg] - - -script/script.c:50: malloc 0x82fdca80 - - -script/script.c:50: malloc 0x82fdca50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc960 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fdc930 - - -script/script.c:50: malloc 0x82fdc910 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc8e0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fdc8b0 - - -script/script.c:50: malloc 0x82fdc890 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdc860 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdc840 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fdc810 - - -script/script.c:50: malloc 0x82fdc7f0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdc7c0 - - -script/script.c:50: malloc 0x82fdc700 - - -script/lexer.c:322: token 288 text [source] - - -script/script.c:50: malloc 0x82fdc600 - - -script/script.c:50: malloc 0x82fdc5e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc5b0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdc4b0 - - -script/script.c:50: malloc 0x82fdc490 - - -script/lexer.c:322: token 289 text [config_directory] - - -script/script.c:50: malloc 0x82fdc460 - - -script/script.c:50: malloc 0x82fdc430 - - -script/lexer.c:322: token 289 text [/custom.cfg] - - -script/script.c:50: malloc 0x82fa03b0 - - -script/script.c:50: malloc 0x82fa0380 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa0350 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fa0320 - - -script/script.c:50: malloc 0x82fa0300 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fa02d0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fa02b0 - - -script/lexer.c:322: token 276 text [elif] - - -script/script.c:50: malloc 0x82fa0280 - - -script/script.c:50: malloc 0x82fa0260 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fa0230 - - -script/script.c:50: malloc 0x82fa0210 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa0100 - - -script/lexer.c:322: token 289 text [-z] - - -script/script.c:50: malloc 0x82fa0020 - - -script/script.c:50: malloc 0x82fa0000 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ffd0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9ff30 - - -script/script.c:50: malloc 0x82f9ff10 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9fe30 - - -script/script.c:50: malloc 0x82f9fe10 - - -script/lexer.c:322: token 289 text [config_directory] - - -script/script.c:50: malloc 0x82f9fde0 - - -script/script.c:50: malloc 0x82f9fdb0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9fd80 - - -script/script.c:50: malloc 0x82f9fd60 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9ffa0 - - -script/script.c:50: malloc 0x82f9fd40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fd10 - - -script/lexer.c:322: token 289 text [-a] - - -script/script.c:50: malloc 0x82f9fce0 - - -script/script.c:50: malloc 0x82f9fcc0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fbf0 - - -script/lexer.c:322: token 289 text [-f] - - -script/script.c:50: malloc 0x82f9fbc0 - - -script/script.c:50: malloc 0x82f9fba0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fb70 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9fad0 - - -script/script.c:50: malloc 0x82f9fab0 - - -script/lexer.c:322: token 289 text [prefix] - - -script/script.c:50: malloc 0x82f9f9b0 - - -script/script.c:50: malloc 0x82f9f990 - - -script/lexer.c:322: token 289 text [/custom.cfg] - - -script/script.c:50: malloc 0x82f9f960 - - -script/script.c:50: malloc 0x82f9f930 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f900 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82f9f8d0 - - -script/script.c:50: malloc 0x82f9f8b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f880 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82f9f850 - - -script/script.c:50: malloc 0x82f9f780 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9f750 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9f730 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82f9f700 - - -script/script.c:50: malloc 0x82f9f6e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f6b0 - - -script/script.c:50: malloc 0x82f9f690 - - -script/lexer.c:322: token 288 text [source] - - -script/script.c:50: malloc 0x82f9f510 - - -script/script.c:50: malloc 0x82f9f4f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f4c0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9f420 - - -script/script.c:50: malloc 0x82f9f400 - - -script/lexer.c:322: token 289 text [prefix] - - -script/script.c:50: malloc 0x82f9f3d0 - - -script/script.c:50: malloc 0x82f9f3b0 - - -script/lexer.c:322: token 289 text [/custom.cfg] - - -script/script.c:50: malloc 0x82f9f380 - - -script/script.c:50: malloc 0x82f9f350 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f320 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82f9f2f0 - - -script/script.c:50: malloc 0x82f9f2d0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9f2a0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9f280 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f250 - - -script/script.c:50: malloc 0x82f9f230 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82f9f150 - - -script/script.c:50: malloc 0x82f9f130 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82f9f100 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82f9f0d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f0a0 - - -script/script.c:50: malloc 0x82f9f080 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82f9f200 - - -script/script.c:50: malloc 0x82f9f1e0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9f060 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2048 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2816 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=18176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605120 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34621504 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34607104 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605184 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605248 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=0 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82f9f060 - - -script/script.c:65: free 0x82f9f1e0 - - -script/script.c:65: free 0x82f9f200 - - -script/script.c:65: free 0x82f9f080 - - -script/script.c:65: free 0x82f9f0a0 - - -script/script.c:65: free 0x82f9f0d0 - - -script/script.c:65: free 0x82f9f100 - - -script/script.c:65: free 0x82f9f130 - - -script/script.c:65: free 0x82f9f150 - - -script/script.c:65: free 0x82f9f230 - - -script/script.c:65: free 0x82f9f250 - - -script/script.c:65: free 0x82f9f280 - - -script/script.c:65: free 0x82f9f2a0 - - -script/script.c:65: free 0x82f9f2d0 - - -script/script.c:65: free 0x82f9f2f0 - - -script/script.c:65: free 0x82f9f320 - - -script/script.c:65: free 0x82f9f350 - - -script/script.c:65: free 0x82f9f380 - - -script/script.c:65: free 0x82f9f3b0 - - -script/script.c:65: free 0x82f9f3d0 - - -script/script.c:65: free 0x82f9f400 - - -script/script.c:65: free 0x82f9f420 - - -script/script.c:65: free 0x82f9f4c0 - - -script/script.c:65: free 0x82f9f4f0 - - -script/script.c:65: free 0x82f9f510 - - -script/script.c:65: free 0x82f9f690 - - -script/script.c:65: free 0x82f9f6b0 - - -script/script.c:65: free 0x82f9f6e0 - - -script/script.c:65: free 0x82f9f700 - - -script/script.c:65: free 0x82f9f730 - - -script/script.c:65: free 0x82f9f750 - - -script/script.c:65: free 0x82f9f780 - - -script/script.c:65: free 0x82f9f850 - - -script/script.c:65: free 0x82f9f880 - - -script/script.c:65: free 0x82f9f8b0 - - -script/script.c:65: free 0x82f9f8d0 - - -script/script.c:65: free 0x82f9f900 - - -script/script.c:65: free 0x82f9f930 - - -script/script.c:65: free 0x82f9f960 - - -script/script.c:65: free 0x82f9f990 - - -script/script.c:65: free 0x82f9f9b0 - - -script/script.c:65: free 0x82f9fab0 - - -script/script.c:65: free 0x82f9fad0 - - -script/script.c:65: free 0x82f9fb70 - - -script/script.c:65: free 0x82f9fba0 - - -script/script.c:65: free 0x82f9fbc0 - - -script/script.c:65: free 0x82f9fbf0 - - -script/script.c:65: free 0x82f9fcc0 - - -script/script.c:65: free 0x82f9fce0 - - -script/script.c:65: free 0x82f9fd10 - - -script/script.c:65: free 0x82f9fd40 - - -script/script.c:65: free 0x82f9ffa0 - - -script/script.c:65: free 0x82f9fd60 - - -script/script.c:65: free 0x82f9fd80 - - -script/script.c:65: free 0x82f9fdb0 - - -script/script.c:65: free 0x82f9fde0 - - -script/script.c:65: free 0x82f9fe10 - - -script/script.c:65: free 0x82f9fe30 - - -script/script.c:65: free 0x82f9ff10 - - -script/script.c:65: free 0x82f9ff30 - - -script/script.c:65: free 0x82f9ffd0 - - -script/script.c:65: free 0x82fa0000 - - -script/script.c:65: free 0x82fa0020 - - -script/script.c:65: free 0x82fa0100 - - -script/script.c:65: free 0x82fa0210 - - -script/script.c:65: free 0x82fa0230 - - -script/script.c:65: free 0x82fa0260 - - -script/script.c:65: free 0x82fa0280 - - -script/script.c:65: free 0x82fa02b0 - - -script/script.c:65: free 0x82fa02d0 - - -script/script.c:65: free 0x82fa0300 - - -script/script.c:65: free 0x82fa0320 - - -script/script.c:65: free 0x82fa0350 - - -script/script.c:65: free 0x82fa0380 - - -script/script.c:65: free 0x82fa03b0 - - -script/script.c:65: free 0x82fdc430 - - -script/script.c:65: free 0x82fdc460 - - -script/script.c:65: free 0x82fdc490 - - -script/script.c:65: free 0x82fdc4b0 - - -script/script.c:65: free 0x82fdc5b0 - - -script/script.c:65: free 0x82fdc5e0 - - -script/script.c:65: free 0x82fdc600 - - -script/script.c:65: free 0x82fdc700 - - -script/script.c:65: free 0x82fdc7c0 - - -script/script.c:65: free 0x82fdc7f0 - - -script/script.c:65: free 0x82fdc810 - - -script/script.c:65: free 0x82fdc840 - - -script/script.c:65: free 0x82fdc860 - - -script/script.c:65: free 0x82fdc890 - - -script/script.c:65: free 0x82fdc8b0 - - -script/script.c:65: free 0x82fdc8e0 - - -script/script.c:65: free 0x82fdc910 - - -script/script.c:65: free 0x82fdc930 - - -script/script.c:65: free 0x82fdc960 - - -script/script.c:65: free 0x82fdca50 - - -script/script.c:65: free 0x82fdca80 - - -script/script.c:65: free 0x82fdcab0 - - -script/script.c:65: free 0x82fdcae0 - - -script/script.c:65: free 0x82fdf360 - - -script/script.c:65: free 0x82fdf380 - - -script/script.c:65: free 0x82fdf420 - - -script/script.c:65: free 0x82fdf450 - - -script/script.c:65: free 0x82fdf470 - - -script/script.c:65: free 0x82fe1df0 - - -script/script.c:65: free 0x82fe1e20 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -[?25l[m[H[J[1;1H[2;27HGNU GRUB version 2.02~beta2 - - - - -[m[4;2H+----------------------------------------------------------------------------+[5;2H|[5;79H|[6;2H|[6;79H|[7;2H|[7;79H|[8;2H|[8;79H|[9;2H|[9;79H|[10;2H|[10;79H|[11;2H|[11;79H|[12;2H|[12;79H|[13;2H|[13;79H|[14;2H|[14;79H|[15;2H|[15;79H|[16;2H|[16;79H|[17;2H+----------------------------------------------------------------------------+[m[18;2H[19;2H[m Use the ^ and v keys to select which entry is highlighted. - - - Press enter to boot the selected OS, `e' to edit the commands - - - before booting or `c' for a command-line. [5;80H [7m[5;3H*Parabola GNU/Linux-libre, linux-libre kernel [m[5;78H[m[m[6;3H [m[6;78H[m[m[7;3H [m[7;78H[m[m[8;3H [m[8;78H[m[m[9;3H [m[9;78H[m[m[10;3H [m[10;78H[m[m[11;3H [m[11;78H[m[m[12;3H [m[12;78H[m[m[13;3H [m[13;78H[m[m[14;3H [m[14;78H[m[m[15;3H [m[15;78H[m[m[16;3H [m[16;78H[m[16;80H [5;78H[22;1H The highlighted entry will be executed automatically in 1000s. [5;78H[22;1H The highlighted entry will be executed automatically in 999s. [5;78H[22;1H [23;1H [5;78H[?25h[H[J[1;1H - - -script/lexer.c:322: token 288 text [setparams] - - -script/script.c:50: malloc 0x82fe1f00 - - -script/script.c:50: malloc 0x82fe1ed0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1ea0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdf3f0 - - -script/script.c:50: malloc 0x82fdf3d0 - - -script/lexer.c:322: token 289 text [Parabola GNU/Linux-libre, linux-libre - - -kernel] - - -script/script.c:50: malloc 0x82fef270 - - -script/script.c:50: malloc 0x82fef220 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe1e30 - - -script/script.c:50: malloc 0x82fe1e10 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdcae0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdcab0 - - -script/script.c:50: malloc 0x82fdca90 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdca60 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1fb0 - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdc970 - - -script/script.c:65: free 0x82fdc970 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fb0 - - -script/script.c:65: free 0x82fdca60 - - -script/script.c:65: free 0x82fdca90 - - -script/script.c:65: free 0x82fdcab0 - - -script/script.c:65: free 0x82fdcae0 - - -script/script.c:65: free 0x82fe1e10 - - -script/script.c:65: free 0x82fe1e30 - - -script/script.c:65: free 0x82fef220 - - -script/script.c:65: free 0x82fef270 - - -script/script.c:65: free 0x82fdf3d0 - - -script/script.c:65: free 0x82fdf3f0 - - -script/script.c:65: free 0x82fe1ea0 - - -script/script.c:65: free 0x82fe1ed0 - - -script/script.c:65: free 0x82fe1f00 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f40 - - -script/script.c:50: malloc 0x82fe1f20 - - -script/script.c:65: free 0x82fe1f20 - - -script/script.c:65: free 0x82fe1f40 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/lexer.c:322: token 288 text [load_video] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1f30 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe1f00 - - -script/script.c:50: malloc 0x82fe1ee0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe1eb0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1e80 - - -script/script.c:50: malloc 0x82fe1e60 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e60 - - -script/script.c:65: free 0x82fe1e80 - - -script/script.c:65: free 0x82fe1eb0 - - -script/script.c:65: free 0x82fe1ee0 - - -script/script.c:65: free 0x82fe1f00 - - -script/script.c:65: free 0x82fe1f30 - - -script/script.c:65: free 0x82fe1f60 - - -script/script.c:65: free 0x82fe1f90 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe1f50 - - -script/script.c:50: malloc 0x82fe1f30 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1f00 - - -script/lexer.c:322: token 289 text [gfxpayload=keep] - - -script/script.c:50: malloc 0x82fdf470 - - -script/script.c:50: malloc 0x82fdf440 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf410 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdf3e0 - - -script/script.c:50: malloc 0x82fdf3c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdf390 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1fb0 - - -script/script.c:50: malloc 0x82fe1ea0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdf370 - - -script/script.c:65: free 0x82fdf370 - - -script/script.c:65: free 0x82fe1ea0 - - -script/script.c:65: free 0x82fe1fb0 - - -script/script.c:65: free 0x82fdf390 - - -script/script.c:65: free 0x82fdf3c0 - - -script/script.c:65: free 0x82fdf3e0 - - -script/script.c:65: free 0x82fdf410 - - -script/script.c:65: free 0x82fdf440 - - -script/script.c:65: free 0x82fdf470 - - -script/script.c:65: free 0x82fe1f00 - - -script/script.c:65: free 0x82fe1f30 - - -script/script.c:65: free 0x82fe1f50 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1f40 - - -script/lexer.c:322: token 288 text [gzio] - - -script/script.c:50: malloc 0x82fe1f10 - - -script/script.c:50: malloc 0x82fe1ef0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1ec0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe1e90 - - -script/script.c:50: malloc 0x82fe1e70 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe1e40 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1e10 - - -script/script.c:50: malloc 0x82fe1df0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdf480 - - -script/script.c:65: free 0x82fdf480 - - -script/script.c:65: free 0x82fe1df0 - - -script/script.c:65: free 0x82fe1e10 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e70 - - -script/script.c:65: free 0x82fe1e90 - - -script/script.c:65: free 0x82fe1ec0 - - -script/script.c:65: free 0x82fe1ef0 - - -script/script.c:65: free 0x82fe1f10 - - -script/script.c:65: free 0x82fe1f40 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe1f50 - - -script/script.c:50: malloc 0x82fe1f30 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1f00 - - -script/lexer.c:322: token 288 text [part_msdos] - - -script/script.c:50: malloc 0x82fe1ed0 - - -script/script.c:50: malloc 0x82fe1ea0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1e70 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe1e40 - - -script/script.c:50: malloc 0x82fe1e20 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe1df0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fdf470 - - -script/script.c:50: malloc 0x82fdf450 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdf430 - - -script/script.c:65: free 0x82fdf430 - - -script/script.c:65: free 0x82fdf450 - - -script/script.c:65: free 0x82fdf470 - - -script/script.c:65: free 0x82fe1df0 - - -script/script.c:65: free 0x82fe1e20 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e70 - - -script/script.c:65: free 0x82fe1ea0 - - -script/script.c:65: free 0x82fe1ed0 - - -script/script.c:65: free 0x82fe1f00 - - -script/script.c:65: free 0x82fe1f30 - - -script/script.c:65: free 0x82fe1f50 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1f40 - - -script/lexer.c:322: token 288 text [ext2] - - -script/script.c:50: malloc 0x82fe1f10 - - -script/script.c:50: malloc 0x82fe1ef0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1ec0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe1e90 - - -script/script.c:50: malloc 0x82fe1e70 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe1e40 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1e10 - - -script/script.c:50: malloc 0x82fe1df0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdf480 - - -script/script.c:65: free 0x82fdf480 - - -script/script.c:65: free 0x82fe1df0 - - -script/script.c:65: free 0x82fe1e10 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e70 - - -script/script.c:65: free 0x82fe1e90 - - -script/script.c:65: free 0x82fe1ec0 - - -script/script.c:65: free 0x82fe1ef0 - - -script/script.c:65: free 0x82fe1f10 - - -script/script.c:65: free 0x82fe1f40 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fe1f00 - - -script/script.c:50: malloc 0x82fe1ee0 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fdf470 - - -script/script.c:50: malloc 0x82fdf450 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf420 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fdf380 - - -script/script.c:50: malloc 0x82fdf360 - - -script/lexer.c:322: token 289 text [feature_platform_search_hint] - - -script/script.c:50: malloc 0x82fdcae0 - - -script/script.c:50: malloc 0x82fdcaa0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdf3f0 - - -script/script.c:50: malloc 0x82fdf340 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdca70 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fdca40 - - -script/script.c:50: malloc 0x82fdc970 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc940 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fdc910 - - -script/script.c:50: malloc 0x82fdc8f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc8c0 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fdc890 - - -script/script.c:50: malloc 0x82fdc870 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc840 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fdc810 - - -script/script.c:50: malloc 0x82fdc7f0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdc6f0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdc610 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fdc5e0 - - -script/script.c:50: malloc 0x82fdc5c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdc590 - - -script/script.c:50: malloc 0x82fdc4c0 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82fdc490 - - -script/script.c:50: malloc 0x82fdc470 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc440 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82fdc2a0 - - -script/script.c:50: malloc 0x82fdc270 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc240 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82fdc210 - - -script/script.c:50: malloc 0x82fdc1e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc1b0 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82fdc180 - - -script/script.c:50: malloc 0x82fdc150 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc120 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82fdc010 - - -script/script.c:50: malloc 0x82fdbfd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdbfa0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdbf70 - - -script/script.c:50: malloc 0x82fdbf50 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdbf20 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdbf00 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82fdbe50 - - -script/script.c:50: malloc 0x82fdbe30 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdbe00 - - -script/script.c:50: malloc 0x82fdbde0 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82fdbdb0 - - -script/script.c:50: malloc 0x82fdbd90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdbd60 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82fdbc30 - - -script/script.c:50: malloc 0x82fdbc00 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdbbd0 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82fdbba0 - - -script/script.c:50: malloc 0x82fdbb70 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdbb40 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82fdbb10 - - -script/script.c:50: malloc 0x82fdbae0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdbab0 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82fdba80 - - -script/script.c:50: malloc 0x82fdba40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdba10 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdb9e0 - - -script/script.c:50: malloc 0x82fdb9c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdb990 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdb970 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fdb8c0 - - -script/script.c:50: malloc 0x82fdb8a0 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fdb870 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdb840 - - -script/script.c:50: malloc 0x82fdb820 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fdb940 - - -script/script.c:50: malloc 0x82fdb800 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdb7e0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2048 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2816 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=18176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605120 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34621504 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34623680 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fda820, size 0xf6c - - -kern/dl.c:620: relocating to 0x82feeaf0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=0 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34624192 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fe3490, size 0xe78 - - -kern/dl.c:620: relocating to 0x82fe8180 - - -kern/arm/dl.c:102: trampoline size c - - -kern/dl.c:553: flushing 0xc75 bytes at 0x82fe2800 - - -kern/dl.c:643: module name: search_fs_file - - -kern/dl.c:644: init function: 0x82fe2d48 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fe34c0, size 0xe50 - - -kern/dl.c:620: relocating to 0x82fe5a20 - - -kern/arm/dl.c:102: trampoline size c - - -kern/dl.c:553: flushing 0xc50 bytes at 0x82fd9bc0 - - -kern/dl.c:643: module name: search_label - - -kern/dl.c:644: init function: 0x82fda138 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0xce3 bytes at 0x82fe3620 - - -kern/dl.c:643: module name: search - - -kern/dl.c:644: init function: 0x82fe3820 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82fdb7e0 - - -script/script.c:65: free 0x82fdb800 - - -script/script.c:65: free 0x82fdb940 - - -script/script.c:65: free 0x82fdb820 - - -script/script.c:65: free 0x82fdb840 - - -script/script.c:65: free 0x82fdb870 - - -script/script.c:65: free 0x82fdb8a0 - - -script/script.c:65: free 0x82fdb8c0 - - -script/script.c:65: free 0x82fdb970 - - -script/script.c:65: free 0x82fdb990 - - -script/script.c:65: free 0x82fdb9c0 - - -script/script.c:65: free 0x82fdb9e0 - - -script/script.c:65: free 0x82fdba10 - - -script/script.c:65: free 0x82fdba40 - - -script/script.c:65: free 0x82fdba80 - - -script/script.c:65: free 0x82fdbab0 - - -script/script.c:65: free 0x82fdbae0 - - -script/script.c:65: free 0x82fdbb10 - - -script/script.c:65: free 0x82fdbb40 - - -script/script.c:65: free 0x82fdbb70 - - -script/script.c:65: free 0x82fdbba0 - - -script/script.c:65: free 0x82fdbbd0 - - -script/script.c:65: free 0x82fdbc00 - - -script/script.c:65: free 0x82fdbc30 - - -script/script.c:65: free 0x82fdbd60 - - -script/script.c:65: free 0x82fdbd90 - - -script/script.c:65: free 0x82fdbdb0 - - -script/script.c:65: free 0x82fdbde0 - - -script/script.c:65: free 0x82fdbe00 - - -script/script.c:65: free 0x82fdbe30 - - -script/script.c:65: free 0x82fdbe50 - - -script/script.c:65: free 0x82fdbf00 - - -script/script.c:65: free 0x82fdbf20 - - -script/script.c:65: free 0x82fdbf50 - - -script/script.c:65: free 0x82fdbf70 - - -script/script.c:65: free 0x82fdbfa0 - - -script/script.c:65: free 0x82fdbfd0 - - -script/script.c:65: free 0x82fdc010 - - -script/script.c:65: free 0x82fdc120 - - -script/script.c:65: free 0x82fdc150 - - -script/script.c:65: free 0x82fdc180 - - -script/script.c:65: free 0x82fdc1b0 - - -script/script.c:65: free 0x82fdc1e0 - - -script/script.c:65: free 0x82fdc210 - - -script/script.c:65: free 0x82fdc240 - - -script/script.c:65: free 0x82fdc270 - - -script/script.c:65: free 0x82fdc2a0 - - -script/script.c:65: free 0x82fdc440 - - -script/script.c:65: free 0x82fdc470 - - -script/script.c:65: free 0x82fdc490 - - -script/script.c:65: free 0x82fdc4c0 - - -script/script.c:65: free 0x82fdc590 - - -script/script.c:65: free 0x82fdc5c0 - - -script/script.c:65: free 0x82fdc5e0 - - -script/script.c:65: free 0x82fdc610 - - -script/script.c:65: free 0x82fdc6f0 - - -script/script.c:65: free 0x82fdc7f0 - - -script/script.c:65: free 0x82fdc810 - - -script/script.c:65: free 0x82fdc840 - - -script/script.c:65: free 0x82fdc870 - - -script/script.c:65: free 0x82fdc890 - - -script/script.c:65: free 0x82fdc8c0 - - -script/script.c:65: free 0x82fdc8f0 - - -script/script.c:65: free 0x82fdc910 - - -script/script.c:65: free 0x82fdc940 - - -script/script.c:65: free 0x82fdc970 - - -script/script.c:65: free 0x82fdca40 - - -script/script.c:65: free 0x82fdca70 - - -script/script.c:65: free 0x82fdf340 - - -script/script.c:65: free 0x82fdf3f0 - - -script/script.c:65: free 0x82fdcaa0 - - -script/script.c:65: free 0x82fdcae0 - - -script/script.c:65: free 0x82fdf360 - - -script/script.c:65: free 0x82fdf380 - - -script/script.c:65: free 0x82fdf420 - - -script/script.c:65: free 0x82fdf450 - - -script/script.c:65: free 0x82fdf470 - - -script/script.c:65: free 0x82fe1ee0 - - -script/script.c:65: free 0x82fe1f00 - - -script/lexer.c:322: token 288 text [echo] - - -script/script.c:50: malloc 0x82fd7680 - - -script/script.c:50: malloc 0x82fd7660 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7630 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fd74c0 - - -script/script.c:50: malloc 0x82fd74a0 - - -script/lexer.c:322: token 289 text [Loading linux-libre kernel ...] - - -script/script.c:50: malloc 0x82fd7470 - - -script/script.c:50: malloc 0x82fd7430 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fd75c0 - - -script/script.c:50: malloc 0x82fd7410 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd73e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fd73b0 - - -script/script.c:50: malloc 0x82fd7390 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fd7360 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fd7760 - - -script/script.c:50: malloc 0x82fd7740 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fd7720 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605184 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34624960 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fdb3a0, size 0x8ac - - -kern/dl.c:620: relocating to 0x82fe5350 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x64c bytes at 0x82fdad40 - - -kern/dl.c:643: module name: echo - - -kern/dl.c:644: init function: 0x82fdaf00 - - -Loading linux-libre kernel ... - - -script/script.c:65: free 0x82fd7720 - - -script/script.c:65: free 0x82fd7740 - - -script/script.c:65: free 0x82fd7760 - - -script/script.c:65: free 0x82fd7360 - - -script/script.c:65: free 0x82fd7390 - - -script/script.c:65: free 0x82fd73b0 - - -script/script.c:65: free 0x82fd73e0 - - -script/script.c:65: free 0x82fd7410 - - -script/script.c:65: free 0x82fd75c0 - - -script/script.c:65: free 0x82fd7430 - - -script/script.c:65: free 0x82fd7470 - - -script/script.c:65: free 0x82fd74a0 - - -script/script.c:65: free 0x82fd74c0 - - -script/script.c:65: free 0x82fd7630 - - -script/script.c:65: free 0x82fd7660 - - -script/script.c:65: free 0x82fd7680 - - -script/lexer.c:322: token 288 text [linux] - - -script/script.c:50: malloc 0x82fd7760 - - -script/script.c:50: malloc 0x82fd7740 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd75e0 - - -script/lexer.c:322: token 289 text [/boot/vmlinuz-linux-libre] - - -script/script.c:50: malloc 0x82fd7480 - - -script/script.c:50: malloc 0x82fd7440 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7410 - - -script/lexer.c:322: token 289 text [root=/dev/mmcblk0p1] - - -script/script.c:50: malloc 0x82fd73e0 - - -script/script.c:50: malloc 0x82fd73b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7380 - - -script/lexer.c:322: token 288 text [rw] - - -script/script.c:50: malloc 0x82fd7350 - - -script/script.c:50: malloc 0x82fd7330 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7300 - - -script/lexer.c:322: token 288 text [debug] - - -script/script.c:50: malloc 0x82fd72d0 - - -script/script.c:50: malloc 0x82fd72b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7280 - - -script/lexer.c:322: token 288 text [ignore_loglevel] - - -script/script.c:50: malloc 0x82fd7250 - - -script/script.c:50: malloc 0x82fd7220 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd71f0 - - -script/lexer.c:322: token 289 text [earlyprintk=serial,keep] - - -script/script.c:50: malloc 0x82fd71c0 - - -script/script.c:50: malloc 0x82fd7190 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7160 - - -script/lexer.c:322: token 289 text [log_buf_len=16M] - - -script/script.c:50: malloc 0x82fd7130 - - -script/script.c:50: malloc 0x82fd7100 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd70d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fd70a0 - - -script/script.c:50: malloc 0x82fd7080 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fd7050 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fd7710 - - -script/script.c:50: malloc 0x82fd76f0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fd76d0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34625216 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fd4980, size 0x26b4 - - -kern/dl.c:620: relocating to 0x82fe4cc0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34623936 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fd8850, size 0xfa0 - - -kern/dl.c:620: relocating to 0x82fe46d0 - - -kern/arm/dl.c:102: trampoline size c - - -kern/dl.c:553: flushing 0xdbf bytes at 0x82fd7a80 - - -kern/dl.c:643: module name: fdt - - -kern/dl.c:644: init function: 0x0 - - -kern/arm/dl.c:102: trampoline size 18 - - -kern/dl.c:553: flushing 0x24bc bytes at 0x82fb12c0 - - -kern/dl.c:643: module name: linux - - -kern/dl.c:644: init function: 0x82fb1e68 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22528 - - -loader/arm/linux.c:311: Loading Linux to 0x80008000 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22592 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22656 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22720 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22784 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22848 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22912 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22976 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23040 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23104 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23168 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23232 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23296 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23360 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23424 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23488 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23552 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23616 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23680 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23744 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23808 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23872 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23936 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24000 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24064 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24128 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24192 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24256 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24320 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24384 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24448 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24512 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24576 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24640 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24704 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24768 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24832 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24896 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24960 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25024 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25088 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25152 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25216 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25280 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25344 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25408 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25472 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25536 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25600 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25664 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25728 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25792 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25856 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25920 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25984 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26048 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26112 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26240 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26304 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26368 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26432 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26496 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26560 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26624 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26688 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26752 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26816 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26880 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26944 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27008 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27072 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27136 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27200 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27264 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27328 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27392 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27456 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27520 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27584 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27648 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27712 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27776 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27840 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27904 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27968 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28032 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28096 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28160 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28224 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28288 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28352 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28416 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28480 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28544 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28608 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28672 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28736 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28800 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28864 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28928 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28992 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29056 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29120 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29184 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29248 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29312 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29376 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29440 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29504 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29568 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29632 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29696 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29760 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29824 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29888 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29952 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30016 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30080 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30144 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30208 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30272 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30336 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30400 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30464 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30528 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30592 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30656 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30720 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20160 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20224 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20288 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20352 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20416 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20480 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20544 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20608 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20672 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20736 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20800 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20864 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20928 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20992 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21056 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21120 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21184 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21248 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21312 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21376 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21440 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21504 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21568 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21632 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21696 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21760 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21824 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21888 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21952 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22016 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22080 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82fd76d0 - - -script/script.c:65: free 0x82fd76f0 - - -script/script.c:65: free 0x82fd7710 - - -script/script.c:65: free 0x82fd7050 - - -script/script.c:65: free 0x82fd7080 - - -script/script.c:65: free 0x82fd70a0 - - -script/script.c:65: free 0x82fd70d0 - - -script/script.c:65: free 0x82fd7100 - - -script/script.c:65: free 0x82fd7130 - - -script/script.c:65: free 0x82fd7160 - - -script/script.c:65: free 0x82fd7190 - - -script/script.c:65: free 0x82fd71c0 - - -script/script.c:65: free 0x82fd71f0 - - -script/script.c:65: free 0x82fd7220 - - -script/script.c:65: free 0x82fd7250 - - -script/script.c:65: free 0x82fd7280 - - -script/script.c:65: free 0x82fd72b0 - - -script/script.c:65: free 0x82fd72d0 - - -script/script.c:65: free 0x82fd7300 - - -script/script.c:65: free 0x82fd7330 - - -script/script.c:65: free 0x82fd7350 - - -script/script.c:65: free 0x82fd7380 - - -script/script.c:65: free 0x82fd73b0 - - -script/script.c:65: free 0x82fd73e0 - - -script/script.c:65: free 0x82fd7410 - - -script/script.c:65: free 0x82fd7440 - - -script/script.c:65: free 0x82fd7480 - - -script/script.c:65: free 0x82fd75e0 - - -script/script.c:65: free 0x82fd7740 - - -script/script.c:65: free 0x82fd7760 - - -script/lexer.c:322: token 288 text [echo] - - -script/script.c:50: malloc 0x82fd5350 - - -script/script.c:50: malloc 0x82fd5330 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd5300 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fd5190 - - -script/script.c:50: malloc 0x82fd5170 - - -script/lexer.c:322: token 289 text [Loading devices tree file ...] - - -script/script.c:50: malloc 0x82fd5140 - - -script/script.c:50: malloc 0x82fd5100 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fd5290 - - -script/script.c:50: malloc 0x82fd50e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd50b0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fd5080 - - -script/script.c:50: malloc 0x82fd5060 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fd5030 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fd5430 - - -script/script.c:50: malloc 0x82fd5410 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fd53f0 - - -Loading devices tree file ... - - -script/script.c:65: free 0x82fd53f0 - - -script/script.c:65: free 0x82fd5410 - - -script/script.c:65: free 0x82fd5430 - - -script/script.c:65: free 0x82fd5030 - - -script/script.c:65: free 0x82fd5060 - - -script/script.c:65: free 0x82fd5080 - - -script/script.c:65: free 0x82fd50b0 - - -script/script.c:65: free 0x82fd50e0 - - -script/script.c:65: free 0x82fd5290 - - -script/script.c:65: free 0x82fd5100 - - -script/script.c:65: free 0x82fd5140 - - -script/script.c:65: free 0x82fd5170 - - -script/script.c:65: free 0x82fd5190 - - -script/script.c:65: free 0x82fd5300 - - -script/script.c:65: free 0x82fd5330 - - -script/script.c:65: free 0x82fd5350 - - -script/lexer.c:322: token 288 text [devicetree] - - -script/script.c:50: malloc 0x82fd5330 - - -script/script.c:50: malloc 0x82fd5300 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd52d0 - - -script/lexer.c:322: token 289 text - - -[/boot/dtbs/linux-libre/am335x-bone - - -black.dtb] - - -script/script.c:50: malloc 0x82fd50f0 - - -script/script.c:50: malloc 0x82fd50a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd5070 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fd5040 - - -script/script.c:50: malloc 0x82fd5020 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fd4ff0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fd5430 - - -script/script.c:50: malloc 0x82fd5410 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fd53f0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605248 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605312 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34658240 - - -loader/arm/linux.c:488: Loading device tree to 0x81ff0000 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34658304 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34658368 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82fd53f0 - - -script/script.c:65: free 0x82fd5410 - - -script/script.c:65: free 0x82fd5430 - - -script/script.c:65: free 0x82fd4ff0 - - -script/script.c:65: free 0x82fd5020 - - -script/script.c:65: free 0x82fd5040 - - -script/script.c:65: free 0x82fd5070 - - -script/script.c:65: free 0x82fd50a0 - - -script/script.c:65: free 0x82fd50f0 - - -script/script.c:65: free 0x82fd52d0 - - -script/script.c:65: free 0x82fd5300 - - -script/script.c:65: free 0x82fd5330 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fd5390 - - -script/script.c:50: malloc 0x82fd5370 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fd5430 - - -script/script.c:50: malloc 0x82fd5350 - - -script/script.c:65: free 0x82fd5350 - - -script/script.c:65: free 0x82fd5430 - - -script/script.c:65: free 0x82fd5370 - - -script/script.c:65: free 0x82fd5390 - - -loader/arm/linux.c:238: atag: 0x81ff0000, d9da, edfe0dd0, ? -??, -?? - - -loader/arm/linux.c:246: Kernel at: 0x80008000 - - -loader/arm/linux.c:184: linux_args: 'BOOT_IMAGE=/boot/vmlinuz-linux-libre - - -root=/dev/mmcblk0p1 rw debug ignore_loglevel earlyprintk=serial,keep - - -log_buf_len=16M' - - -loader/arm/linux.c:215: FDT updated for Linux boot - - -loader/arm/linux.c:255: FDT @ 0x0x81ff0000 - - -loader/arm/linux.c:267: Jumping to Linux... - - -prefetch abort - -pc : [<000000a0>] lr : [<0000009c>] - -sp : 82055528 ip : 0000dc52 fp : 829073b0 - -r10: 82fb2bb4 r9 : 82055530 r8 : 82fb28cf - -r7 : 8200a420 r6 : 82fb28cf r5 : 82ff1df0 r4 : 0000010b - -r3 : 000001ff r2 : 00000002 r1 : 00000002 r0 : 00280000 - -Flags: nZCv IRQs off FIQs on Mode SVC_32 - -Resetting CPU ... - - -resetting ... diff --git a/libre/grub-git/uboot+grub-git.2.log b/libre/grub-git/uboot+grub-git.2.log deleted file mode 100644 index 54575964a..000000000 --- a/libre/grub-git/uboot+grub-git.2.log +++ /dev/null @@ -1,14053 +0,0 @@ -U-Boot SPL 2015.04 (Nov 08 2015 - 01:22:00) - - -U-Boot 2015.04 (Nov 08 2015 - 01:22:00) - - - Watchdog enabled - -I2C: ready - -DRAM: 512 MiB - -MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1 - -Using default environment - - -Net: <ethaddr> not set. Validating first E-fuse MAC - -cpsw - -Hit any key to stop autoboot: 1 0 - -gpio: pin 53 (gpio 53) value is 1 - -starting USB... - -USB0: Port not available. - -switch to partitions #0, OK - -mmc0 is current device - -mmc found on device 0 - -Checking for: /boot/uEnv.txt ... - -gpio: pin 54 (gpio 54) value is 1 - -25 bytes read in 28 ms (0 Bytes/s) - -Loaded environment from /boot/uEnv.txt - -Checking if uenvcmd is set ... - -gpio: pin 55 (gpio 55) value is 1 - -74328 bytes read in 320 ms (226.6 KiB/s) - -gpio: pin 56 (gpio 56) value is 1 - -## Booting kernel from Legacy Image at 82000000 ... - - Image Name: - - Created: 2015-01-01 0:00:00 UTC - - Image Type: ARM Linux Kernel Image (uncompressed) - - Data Size: 74264 Bytes = 72.5 KiB - - Load Address: 82000000 - - Entry Point: 82000000 - - Verifying Checksum ... OK - - Loading Kernel Image ... OK - - -Starting kernel ... - - -0 crossers - - -MMU tables generated - - -enabling MMU - - -MMU enabled - - -[7mWelcome to GRUB! - - - -[m[m[mscript/script.c:65: free 0x82fefcf0 - - -script/script.c:65: free 0x82fefd10 - - -script/script.c:65: free 0x82fefd30 - - -script/script.c:65: free 0x82fefa60 - - -script/script.c:65: free 0x82fefa90 - - -script/script.c:65: free 0x82fefab0 - - -script/script.c:65: free 0x82fefae0 - - -script/script.c:65: free 0x82fefb10 - - -script/script.c:65: free 0x82fefbd0 - - -script/script.c:65: free 0x82fefc40 - - -script/script.c:65: free 0x82fefc70 - - -script/script.c:65: free 0x82fefc90 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fefbf0 - - -script/script.c:50: malloc 0x82fefbd0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fefc90 - - -script/script.c:50: malloc 0x82fefbb0 - - -script/script.c:65: free 0x82fefbb0 - - -script/script.c:65: free 0x82fefc90 - - -script/script.c:65: free 0x82fefbd0 - - -script/script.c:65: free 0x82fefbf0 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fefbb0 - - -script/script.c:50: malloc 0x82fefb90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fefb60 - - -script/lexer.c:322: token 288 text [part_gpt] - - -script/script.c:50: malloc 0x82fefb30 - - -script/script.c:50: malloc 0x82fefb10 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fefae0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fefab0 - - -script/script.c:50: malloc 0x82fefa90 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fefa60 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fefc90 - - -script/script.c:50: malloc 0x82fefc70 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fefc50 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=40277760 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82ff0d50, size 0x9b8 - - -kern/dl.c:620: relocating to 0x82ff1930 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x750 bytes at 0x82ff05f0 - - -kern/dl.c:643: module name: part_gpt - - -kern/dl.c:644: init function: 0x82ff08d0 - - -script/script.c:65: free 0x82fefc50 - - -script/script.c:65: free 0x82fefc70 - - -script/script.c:65: free 0x82fefc90 - - -script/script.c:65: free 0x82fefa60 - - -script/script.c:65: free 0x82fefa90 - - -script/script.c:65: free 0x82fefab0 - - -script/script.c:65: free 0x82fefae0 - - -script/script.c:65: free 0x82fefb10 - - -script/script.c:65: free 0x82fefb30 - - -script/script.c:65: free 0x82fefb60 - - -script/script.c:65: free 0x82fefb90 - - -script/script.c:65: free 0x82fefbb0 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fee0f0 - - -script/script.c:50: malloc 0x82fee0d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fee0a0 - - -script/lexer.c:322: token 288 text [part_msdos] - - -script/script.c:50: malloc 0x82fee070 - - -script/script.c:50: malloc 0x82fee040 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fee010 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedfe0 - - -script/script.c:50: malloc 0x82fedfc0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fedf90 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fee1b0 - - -script/script.c:50: malloc 0x82fee190 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fedf70 - - -script/script.c:65: free 0x82fedf70 - - -script/script.c:65: free 0x82fee190 - - -script/script.c:65: free 0x82fee1b0 - - -script/script.c:65: free 0x82fedf90 - - -script/script.c:65: free 0x82fedfc0 - - -script/script.c:65: free 0x82fedfe0 - - -script/script.c:65: free 0x82fee010 - - -script/script.c:65: free 0x82fee040 - - -script/script.c:65: free 0x82fee070 - - -script/script.c:65: free 0x82fee0a0 - - -script/script.c:65: free 0x82fee0d0 - - -script/script.c:65: free 0x82fee0f0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fee1b0 - - -script/script.c:50: malloc 0x82fee0b0 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fedf80 - - -script/script.c:50: malloc 0x82fedf60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedf30 - - -script/lexer.c:322: token 289 text [-s] - - -script/script.c:50: malloc 0x82fedf00 - - -script/script.c:50: malloc 0x82fedee0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedeb0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fede10 - - -script/script.c:50: malloc 0x82feddf0 - - -script/lexer.c:322: token 289 text [prefix] - - -script/script.c:50: malloc 0x82feddc0 - - -script/script.c:50: malloc 0x82fedda0 - - -script/lexer.c:322: token 289 text [/grubenv] - - -script/script.c:50: malloc 0x82fedd70 - - -script/script.c:50: malloc 0x82fedd50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedd20 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fedcf0 - - -script/script.c:50: malloc 0x82fedcd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedca0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fedc70 - - -script/script.c:50: malloc 0x82fedc50 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fedc20 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fedc00 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fedbd0 - - -script/script.c:50: malloc 0x82fedbb0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedb80 - - -script/script.c:50: malloc 0x82fedb60 - - -script/lexer.c:322: token 288 text [load_env] - - -script/script.c:50: malloc 0x82feda80 - - -script/script.c:50: malloc 0x82feda60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feda30 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feda00 - - -script/script.c:50: malloc 0x82fed9e0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fed9b0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fed990 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fed8b0 - - -script/script.c:50: malloc 0x82fed890 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fed860 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fed830 - - -script/script.c:50: malloc 0x82fed810 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fed960 - - -script/script.c:50: malloc 0x82fed940 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fed7f0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82feeb10, size 0x172c - - -kern/dl.c:620: relocating to 0x82ff1530 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x151d bytes at 0x82fec2c0 - - -kern/dl.c:643: module name: test - - -kern/dl.c:644: init function: 0x82fed044 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34624192 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fee730, size 0x1b10 - - -kern/dl.c:620: relocating to 0x82ff1270 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=40277632 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82feb450, size 0xab4 - - -kern/dl.c:620: relocating to 0x82ff0e70 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x89d bytes at 0x82feaba0 - - -kern/dl.c:643: module name: disk - - -kern/dl.c:644: init function: 0x82feaffc - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x1890 bytes at 0x82fe8f90 - - -kern/dl.c:643: module name: loadenv - - -kern/dl.c:644: init function: 0x82fe975c - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34622592 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82fed7f0 - - -script/script.c:65: free 0x82fed940 - - -script/script.c:65: free 0x82fed960 - - -script/script.c:65: free 0x82fed810 - - -script/script.c:65: free 0x82fed830 - - -script/script.c:65: free 0x82fed860 - - -script/script.c:65: free 0x82fed890 - - -script/script.c:65: free 0x82fed8b0 - - -script/script.c:65: free 0x82fed990 - - -script/script.c:65: free 0x82fed9b0 - - -script/script.c:65: free 0x82fed9e0 - - -script/script.c:65: free 0x82feda00 - - -script/script.c:65: free 0x82feda30 - - -script/script.c:65: free 0x82feda60 - - -script/script.c:65: free 0x82feda80 - - -script/script.c:65: free 0x82fedb60 - - -script/script.c:65: free 0x82fedb80 - - -script/script.c:65: free 0x82fedbb0 - - -script/script.c:65: free 0x82fedbd0 - - -script/script.c:65: free 0x82fedc00 - - -script/script.c:65: free 0x82fedc20 - - -script/script.c:65: free 0x82fedc50 - - -script/script.c:65: free 0x82fedc70 - - -script/script.c:65: free 0x82fedca0 - - -script/script.c:65: free 0x82fedcd0 - - -script/script.c:65: free 0x82fedcf0 - - -script/script.c:65: free 0x82fedd20 - - -script/script.c:65: free 0x82fedd50 - - -script/script.c:65: free 0x82fedd70 - - -script/script.c:65: free 0x82fedda0 - - -script/script.c:65: free 0x82feddc0 - - -script/script.c:65: free 0x82feddf0 - - -script/script.c:65: free 0x82fede10 - - -script/script.c:65: free 0x82fedeb0 - - -script/script.c:65: free 0x82fedee0 - - -script/script.c:65: free 0x82fedf00 - - -script/script.c:65: free 0x82fedf30 - - -script/script.c:65: free 0x82fedf60 - - -script/script.c:65: free 0x82fedf80 - - -script/script.c:65: free 0x82fee0b0 - - -script/script.c:65: free 0x82fee1b0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fee060 - - -script/script.c:50: malloc 0x82fee040 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fedf10 - - -script/script.c:50: malloc 0x82fedef0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedec0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fede20 - - -script/script.c:50: malloc 0x82fede00 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82feddd0 - - -script/script.c:50: malloc 0x82feddb0 - - -script/lexer.c:322: token 289 text [next_entry] - - -script/script.c:50: malloc 0x82fedd80 - - -script/script.c:50: malloc 0x82fedd50 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedd20 - - -script/script.c:50: malloc 0x82fedd00 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fedce0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedcb0 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fedc80 - - -script/script.c:50: malloc 0x82fedc60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedc30 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fedc00 - - -script/script.c:50: malloc 0x82fedbe0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fedbb0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fedb90 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fedb60 - - -script/script.c:50: malloc 0x82feda90 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feda60 - - -script/script.c:50: malloc 0x82feda40 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fed940 - - -script/script.c:50: malloc 0x82fed920 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fed8f0 - - -script/lexer.c:322: token 289 text [default=] - - -script/script.c:50: malloc 0x82fed850 - - -script/script.c:50: malloc 0x82fed830 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febef0 - - -script/script.c:50: malloc 0x82febed0 - - -script/lexer.c:322: token 289 text [next_entry] - - -script/script.c:50: malloc 0x82febea0 - - -script/script.c:50: malloc 0x82febe70 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febe40 - - -script/script.c:50: malloc 0x82febe20 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fed8c0 - - -script/script.c:50: malloc 0x82febe00 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febdd0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82febda0 - - -script/script.c:50: malloc 0x82febd80 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82febd50 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82febd30 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82febc40 - - -script/script.c:50: malloc 0x82febc20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febbf0 - - -script/lexer.c:322: token 289 text [next_entry=] - - -script/script.c:50: malloc 0x82febbc0 - - -script/script.c:50: malloc 0x82febb90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febb60 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82febb30 - - -script/script.c:50: malloc 0x82febb10 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82febae0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [save_env] - - -script/script.c:50: malloc 0x82feb9f0 - - -script/script.c:50: malloc 0x82feb9d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb9a0 - - -script/lexer.c:322: token 288 text [next_entry] - - -script/script.c:50: malloc 0x82feb970 - - -script/script.c:50: malloc 0x82feb940 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb910 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb8e0 - - -script/script.c:50: malloc 0x82feb8c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82feb890 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82feb7a0 - - -script/script.c:50: malloc 0x82feb780 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb750 - - -script/lexer.c:322: token 289 text [boot_once=true] - - -script/script.c:50: malloc 0x82feb720 - - -script/script.c:50: malloc 0x82feb6f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb6c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb690 - - -script/script.c:50: malloc 0x82feb670 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82feb640 - - -script/script.c:294: append command - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82feb560 - - -script/script.c:50: malloc 0x82feb540 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb510 - - -script/script.c:50: malloc 0x82feb4f0 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe88f0 - - -script/script.c:50: malloc 0x82fe88d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe88a0 - - -script/lexer.c:322: token 289 text [default=] - - -script/script.c:50: malloc 0x82fe8810 - - -script/script.c:50: malloc 0x82fe87f0 - - -script/lexer.c:322: token 289 text [0] - - -script/script.c:50: malloc 0x82fe87c0 - - -script/script.c:50: malloc 0x82fe87a0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe8870 - - -script/script.c:50: malloc 0x82fe8780 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8750 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8720 - - -script/script.c:50: malloc 0x82fe8700 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe86d0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe86b0 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe85d0 - - -script/script.c:50: malloc 0x82fe85b0 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe8580 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8550 - - -script/script.c:50: malloc 0x82fe8530 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe8680 - - -script/script.c:50: malloc 0x82fe8660 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe8510 - - -script/script.c:65: free 0x82fe8510 - - -script/script.c:65: free 0x82fe8660 - - -script/script.c:65: free 0x82fe8680 - - -script/script.c:65: free 0x82fe8530 - - -script/script.c:65: free 0x82fe8550 - - -script/script.c:65: free 0x82fe8580 - - -script/script.c:65: free 0x82fe85b0 - - -script/script.c:65: free 0x82fe85d0 - - -script/script.c:65: free 0x82fe86b0 - - -script/script.c:65: free 0x82fe86d0 - - -script/script.c:65: free 0x82fe8700 - - -script/script.c:65: free 0x82fe8720 - - -script/script.c:65: free 0x82fe8750 - - -script/script.c:65: free 0x82fe8780 - - -script/script.c:65: free 0x82fe8870 - - -script/script.c:65: free 0x82fe87a0 - - -script/script.c:65: free 0x82fe87c0 - - -script/script.c:65: free 0x82fe87f0 - - -script/script.c:65: free 0x82fe8810 - - -script/script.c:65: free 0x82fe88a0 - - -script/script.c:65: free 0x82fe88d0 - - -script/script.c:65: free 0x82fe88f0 - - -script/script.c:65: free 0x82feb4f0 - - -script/script.c:65: free 0x82feb510 - - -script/script.c:65: free 0x82feb540 - - -script/script.c:65: free 0x82feb560 - - -script/script.c:65: free 0x82feb640 - - -script/script.c:65: free 0x82feb670 - - -script/script.c:65: free 0x82feb690 - - -script/script.c:65: free 0x82feb6c0 - - -script/script.c:65: free 0x82feb6f0 - - -script/script.c:65: free 0x82feb720 - - -script/script.c:65: free 0x82feb750 - - -script/script.c:65: free 0x82feb780 - - -script/script.c:65: free 0x82feb7a0 - - -script/script.c:65: free 0x82feb890 - - -script/script.c:65: free 0x82feb8c0 - - -script/script.c:65: free 0x82feb8e0 - - -script/script.c:65: free 0x82feb910 - - -script/script.c:65: free 0x82feb940 - - -script/script.c:65: free 0x82feb970 - - -script/script.c:65: free 0x82feb9a0 - - -script/script.c:65: free 0x82feb9d0 - - -script/script.c:65: free 0x82feb9f0 - - -script/script.c:65: free 0x82febae0 - - -script/script.c:65: free 0x82febb10 - - -script/script.c:65: free 0x82febb30 - - -script/script.c:65: free 0x82febb60 - - -script/script.c:65: free 0x82febb90 - - -script/script.c:65: free 0x82febbc0 - - -script/script.c:65: free 0x82febbf0 - - -script/script.c:65: free 0x82febc20 - - -script/script.c:65: free 0x82febc40 - - -script/script.c:65: free 0x82febd30 - - -script/script.c:65: free 0x82febd50 - - -script/script.c:65: free 0x82febd80 - - -script/script.c:65: free 0x82febda0 - - -script/script.c:65: free 0x82febdd0 - - -script/script.c:65: free 0x82febe00 - - -script/script.c:65: free 0x82fed8c0 - - -script/script.c:65: free 0x82febe20 - - -script/script.c:65: free 0x82febe40 - - -script/script.c:65: free 0x82febe70 - - -script/script.c:65: free 0x82febea0 - - -script/script.c:65: free 0x82febed0 - - -script/script.c:65: free 0x82febef0 - - -script/script.c:65: free 0x82fed830 - - -script/script.c:65: free 0x82fed850 - - -script/script.c:65: free 0x82fed8f0 - - -script/script.c:65: free 0x82fed920 - - -script/script.c:65: free 0x82fed940 - - -script/script.c:65: free 0x82feda40 - - -script/script.c:65: free 0x82feda60 - - -script/script.c:65: free 0x82feda90 - - -script/script.c:65: free 0x82fedb60 - - -script/script.c:65: free 0x82fedb90 - - -script/script.c:65: free 0x82fedbb0 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc00 - - -script/script.c:65: free 0x82fedc30 - - -script/script.c:65: free 0x82fedc60 - - -script/script.c:65: free 0x82fedc80 - - -script/script.c:65: free 0x82fedcb0 - - -script/script.c:65: free 0x82fedce0 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedd00 - - -script/script.c:65: free 0x82fedd20 - - -script/script.c:65: free 0x82fedd50 - - -script/script.c:65: free 0x82fedd80 - - -script/script.c:65: free 0x82feddb0 - - -script/script.c:65: free 0x82feddd0 - - -script/script.c:65: free 0x82fede00 - - -script/script.c:65: free 0x82fede20 - - -script/script.c:65: free 0x82fedec0 - - -script/script.c:65: free 0x82fedef0 - - -script/script.c:65: free 0x82fedf10 - - -script/script.c:65: free 0x82fee040 - - -script/script.c:65: free 0x82fee060 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fee000 - - -script/script.c:50: malloc 0x82fedfe0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fee080 - - -script/script.c:50: malloc 0x82fedfc0 - - -script/script.c:65: free 0x82fedfc0 - - -script/script.c:65: free 0x82fee080 - - -script/script.c:65: free 0x82fedfe0 - - -script/script.c:65: free 0x82fee000 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fedfa0 - - -script/script.c:50: malloc 0x82fedf80 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fede50 - - -script/script.c:50: malloc 0x82fede30 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fede00 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fedd60 - - -script/script.c:50: malloc 0x82fedd40 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedd10 - - -script/script.c:50: malloc 0x82fedcf0 - - -script/lexer.c:322: token 289 text [feature_menuentry_id] - - -script/script.c:50: malloc 0x82fedcc0 - - -script/script.c:50: malloc 0x82fedc90 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedc60 - - -script/script.c:50: malloc 0x82fedc40 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82feddd0 - - -script/script.c:50: malloc 0x82fedc20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedbf0 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:50: malloc 0x82fedba0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedb70 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fedb40 - - -script/script.c:50: malloc 0x82feda90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feda60 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82feda30 - - -script/script.c:50: malloc 0x82fed950 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fed920 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fed8f0 - - -script/script.c:50: malloc 0x82fed8d0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fed8a0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fed880 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fed850 - - -script/script.c:50: malloc 0x82fed830 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82febef0 - - -script/script.c:50: malloc 0x82febed0 - - -script/lexer.c:322: token 289 text [menuentry_id_option=] - - -script/script.c:50: malloc 0x82febda0 - - -script/script.c:50: malloc 0x82febd70 - - -script/lexer.c:322: token 289 text [--id] - - -script/script.c:50: malloc 0x82febd40 - - -script/script.c:50: malloc 0x82febd20 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febc40 - - -script/script.c:50: malloc 0x82febc20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febbf0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82febbc0 - - -script/script.c:50: malloc 0x82febba0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82febb70 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82febb50 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82feb9f0 - - -script/script.c:50: malloc 0x82feb9d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb9a0 - - -script/script.c:50: malloc 0x82feb980 - - -script/lexer.c:322: token 289 text [menuentry_id_option=] - - -script/script.c:50: malloc 0x82feb7a0 - - -script/script.c:50: malloc 0x82feb770 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82feb740 - - -script/script.c:50: malloc 0x82feb720 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82feb890 - - -script/script.c:50: malloc 0x82feb700 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb6d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb6a0 - - -script/script.c:50: malloc 0x82feb680 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82feb650 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82feb570 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe88f0 - - -script/script.c:50: malloc 0x82fe88d0 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe88a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8870 - - -script/script.c:50: malloc 0x82fe8850 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82feb540 - - -script/script.c:50: malloc 0x82feb520 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82feb500 - - -script/script.c:65: free 0x82feb500 - - -script/script.c:65: free 0x82feb520 - - -script/script.c:65: free 0x82feb540 - - -script/script.c:65: free 0x82fe8850 - - -script/script.c:65: free 0x82fe8870 - - -script/script.c:65: free 0x82fe88a0 - - -script/script.c:65: free 0x82fe88d0 - - -script/script.c:65: free 0x82fe88f0 - - -script/script.c:65: free 0x82feb570 - - -script/script.c:65: free 0x82feb650 - - -script/script.c:65: free 0x82feb680 - - -script/script.c:65: free 0x82feb6a0 - - -script/script.c:65: free 0x82feb6d0 - - -script/script.c:65: free 0x82feb700 - - -script/script.c:65: free 0x82feb890 - - -script/script.c:65: free 0x82feb720 - - -script/script.c:65: free 0x82feb740 - - -script/script.c:65: free 0x82feb770 - - -script/script.c:65: free 0x82feb7a0 - - -script/script.c:65: free 0x82feb980 - - -script/script.c:65: free 0x82feb9a0 - - -script/script.c:65: free 0x82feb9d0 - - -script/script.c:65: free 0x82feb9f0 - - -script/script.c:65: free 0x82febb50 - - -script/script.c:65: free 0x82febb70 - - -script/script.c:65: free 0x82febba0 - - -script/script.c:65: free 0x82febbc0 - - -script/script.c:65: free 0x82febbf0 - - -script/script.c:65: free 0x82febc20 - - -script/script.c:65: free 0x82febc40 - - -script/script.c:65: free 0x82febd20 - - -script/script.c:65: free 0x82febd40 - - -script/script.c:65: free 0x82febd70 - - -script/script.c:65: free 0x82febda0 - - -script/script.c:65: free 0x82febed0 - - -script/script.c:65: free 0x82febef0 - - -script/script.c:65: free 0x82fed830 - - -script/script.c:65: free 0x82fed850 - - -script/script.c:65: free 0x82fed880 - - -script/script.c:65: free 0x82fed8a0 - - -script/script.c:65: free 0x82fed8d0 - - -script/script.c:65: free 0x82fed8f0 - - -script/script.c:65: free 0x82fed920 - - -script/script.c:65: free 0x82fed950 - - -script/script.c:65: free 0x82feda30 - - -script/script.c:65: free 0x82feda60 - - -script/script.c:65: free 0x82feda90 - - -script/script.c:65: free 0x82fedb40 - - -script/script.c:65: free 0x82fedb70 - - -script/script.c:65: free 0x82fedba0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedbf0 - - -script/script.c:65: free 0x82fedc20 - - -script/script.c:65: free 0x82feddd0 - - -script/script.c:65: free 0x82fedc40 - - -script/script.c:65: free 0x82fedc60 - - -script/script.c:65: free 0x82fedc90 - - -script/script.c:65: free 0x82fedcc0 - - -script/script.c:65: free 0x82fedcf0 - - -script/script.c:65: free 0x82fedd10 - - -script/script.c:65: free 0x82fedd40 - - -script/script.c:65: free 0x82fedd60 - - -script/script.c:65: free 0x82fede00 - - -script/script.c:65: free 0x82fede30 - - -script/script.c:65: free 0x82fede50 - - -script/script.c:65: free 0x82fedf80 - - -script/script.c:65: free 0x82fedfa0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedf60 - - -script/script.c:50: malloc 0x82fedf40 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fedf10 - - -script/script.c:50: malloc 0x82fedef0 - - -script/script.c:65: free 0x82fedef0 - - -script/script.c:65: free 0x82fedf10 - - -script/script.c:65: free 0x82fedf40 - - -script/script.c:65: free 0x82fedf60 - - -script/lexer.c:322: token 288 text [export] - - -script/script.c:50: malloc 0x82fedf60 - - -script/script.c:50: malloc 0x82fedf40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedf10 - - -script/lexer.c:322: token 288 text [menuentry_id_option] - - -script/script.c:50: malloc 0x82fedee0 - - -script/script.c:50: malloc 0x82fedeb0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fede80 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fede50 - - -script/script.c:50: malloc 0x82fede30 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fede00 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82feddd0 - - -script/script.c:50: malloc 0x82feddb0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fedd90 - - -script/script.c:65: free 0x82fedd90 - - -script/script.c:65: free 0x82feddb0 - - -script/script.c:65: free 0x82feddd0 - - -script/script.c:65: free 0x82fede00 - - -script/script.c:65: free 0x82fede30 - - -script/script.c:65: free 0x82fede50 - - -script/script.c:65: free 0x82fede80 - - -script/script.c:65: free 0x82fedeb0 - - -script/script.c:65: free 0x82fedee0 - - -script/script.c:65: free 0x82fedf10 - - -script/script.c:65: free 0x82fedf40 - - -script/script.c:65: free 0x82fedf60 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedf60 - - -script/script.c:50: malloc 0x82fedf40 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fedf10 - - -script/script.c:50: malloc 0x82fedef0 - - -script/script.c:65: free 0x82fedef0 - - -script/script.c:65: free 0x82fedf10 - - -script/script.c:65: free 0x82fedf40 - - -script/script.c:65: free 0x82fedf60 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fedf20 - - -script/script.c:50: malloc 0x82fedf00 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82feddd0 - - -script/script.c:50: malloc 0x82feddb0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedd80 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedce0 - - -script/script.c:50: malloc 0x82fedcc0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedc90 - - -script/script.c:50: malloc 0x82fedc70 - - -script/lexer.c:322: token 289 text [prev_saved_entry] - - -script/script.c:50: malloc 0x82fedc40 - - -script/script.c:50: malloc 0x82fedc10 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedbe0 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedd50 - - -script/script.c:50: malloc 0x82fedba0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fedb70 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fedb40 - - -script/script.c:50: malloc 0x82feda90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feda60 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82feda30 - - -script/script.c:50: malloc 0x82fed950 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fed920 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fed900 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fed8d0 - - -script/script.c:50: malloc 0x82fed8b0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fed880 - - -script/script.c:50: malloc 0x82fed860 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fed830 - - -script/script.c:50: malloc 0x82febdf0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febdc0 - - -script/lexer.c:322: token 289 text [saved_entry=] - - -script/script.c:50: malloc 0x82febc40 - - -script/script.c:50: malloc 0x82febc10 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febbe0 - - -script/script.c:50: malloc 0x82febbc0 - - -script/lexer.c:322: token 289 text [prev_saved_entry] - - -script/script.c:50: malloc 0x82febb90 - - -script/script.c:50: malloc 0x82febb60 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febb30 - - -script/script.c:50: malloc 0x82feba00 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febd90 - - -script/script.c:50: malloc 0x82febd70 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febd40 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82febd10 - - -script/script.c:50: malloc 0x82feb9e0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82feb9b0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82feb990 - - -script/lexer.c:322: token 288 text [save_env] - - -script/script.c:50: malloc 0x82feb7a0 - - -script/script.c:50: malloc 0x82feb780 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb750 - - -script/lexer.c:322: token 288 text [saved_entry] - - -script/script.c:50: malloc 0x82feb720 - - -script/script.c:50: malloc 0x82feb6f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feb6c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb690 - - -script/script.c:50: malloc 0x82feb670 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82feb640 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe88f0 - - -script/script.c:50: malloc 0x82fe88d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe88a0 - - -script/lexer.c:322: token 289 text [prev_saved_entry=] - - -script/script.c:50: malloc 0x82fe8870 - - -script/script.c:50: malloc 0x82fe8840 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8810 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe87e0 - - -script/script.c:50: malloc 0x82fe87c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe8790 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [save_env] - - -script/script.c:50: malloc 0x82fe86a0 - - -script/script.c:50: malloc 0x82fe8680 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8650 - - -script/lexer.c:322: token 288 text [prev_saved_entry] - - -script/script.c:50: malloc 0x82fe8620 - - -script/script.c:50: malloc 0x82fe85f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe85c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8590 - - -script/script.c:50: malloc 0x82fe8570 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe8540 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe8450 - - -script/script.c:50: malloc 0x82fe8430 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8400 - - -script/lexer.c:322: token 289 text [boot_once=true] - - -script/script.c:50: malloc 0x82fe83d0 - - -script/script.c:50: malloc 0x82fe83a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8370 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8340 - - -script/script.c:50: malloc 0x82fe8320 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe82f0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe8210 - - -script/script.c:50: malloc 0x82fe81f0 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe81c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8190 - - -script/script.c:50: malloc 0x82fe8170 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe82c0 - - -script/script.c:50: malloc 0x82fe82a0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe8150 - - -script/script.c:65: free 0x82fe8150 - - -script/script.c:65: free 0x82fe82a0 - - -script/script.c:65: free 0x82fe82c0 - - -script/script.c:65: free 0x82fe8170 - - -script/script.c:65: free 0x82fe8190 - - -script/script.c:65: free 0x82fe81c0 - - -script/script.c:65: free 0x82fe81f0 - - -script/script.c:65: free 0x82fe8210 - - -script/script.c:65: free 0x82fe82f0 - - -script/script.c:65: free 0x82fe8320 - - -script/script.c:65: free 0x82fe8340 - - -script/script.c:65: free 0x82fe8370 - - -script/script.c:65: free 0x82fe83a0 - - -script/script.c:65: free 0x82fe83d0 - - -script/script.c:65: free 0x82fe8400 - - -script/script.c:65: free 0x82fe8430 - - -script/script.c:65: free 0x82fe8450 - - -script/script.c:65: free 0x82fe8540 - - -script/script.c:65: free 0x82fe8570 - - -script/script.c:65: free 0x82fe8590 - - -script/script.c:65: free 0x82fe85c0 - - -script/script.c:65: free 0x82fe85f0 - - -script/script.c:65: free 0x82fe8620 - - -script/script.c:65: free 0x82fe8650 - - -script/script.c:65: free 0x82fe8680 - - -script/script.c:65: free 0x82fe86a0 - - -script/script.c:65: free 0x82fe8790 - - -script/script.c:65: free 0x82fe87c0 - - -script/script.c:65: free 0x82fe87e0 - - -script/script.c:65: free 0x82fe8810 - - -script/script.c:65: free 0x82fe8840 - - -script/script.c:65: free 0x82fe8870 - - -script/script.c:65: free 0x82fe88a0 - - -script/script.c:65: free 0x82fe88d0 - - -script/script.c:65: free 0x82fe88f0 - - -script/script.c:65: free 0x82feb640 - - -script/script.c:65: free 0x82feb670 - - -script/script.c:65: free 0x82feb690 - - -script/script.c:65: free 0x82feb6c0 - - -script/script.c:65: free 0x82feb6f0 - - -script/script.c:65: free 0x82feb720 - - -script/script.c:65: free 0x82feb750 - - -script/script.c:65: free 0x82feb780 - - -script/script.c:65: free 0x82feb7a0 - - -script/script.c:65: free 0x82feb990 - - -script/script.c:65: free 0x82feb9b0 - - -script/script.c:65: free 0x82feb9e0 - - -script/script.c:65: free 0x82febd10 - - -script/script.c:65: free 0x82febd40 - - -script/script.c:65: free 0x82febd70 - - -script/script.c:65: free 0x82febd90 - - -script/script.c:65: free 0x82feba00 - - -script/script.c:65: free 0x82febb30 - - -script/script.c:65: free 0x82febb60 - - -script/script.c:65: free 0x82febb90 - - -script/script.c:65: free 0x82febbc0 - - -script/script.c:65: free 0x82febbe0 - - -script/script.c:65: free 0x82febc10 - - -script/script.c:65: free 0x82febc40 - - -script/script.c:65: free 0x82febdc0 - - -script/script.c:65: free 0x82febdf0 - - -script/script.c:65: free 0x82fed830 - - -script/script.c:65: free 0x82fed860 - - -script/script.c:65: free 0x82fed880 - - -script/script.c:65: free 0x82fed8b0 - - -script/script.c:65: free 0x82fed8d0 - - -script/script.c:65: free 0x82fed900 - - -script/script.c:65: free 0x82fed920 - - -script/script.c:65: free 0x82fed950 - - -script/script.c:65: free 0x82feda30 - - -script/script.c:65: free 0x82feda60 - - -script/script.c:65: free 0x82feda90 - - -script/script.c:65: free 0x82fedb40 - - -script/script.c:65: free 0x82fedb70 - - -script/script.c:65: free 0x82fedba0 - - -script/script.c:65: free 0x82fedd50 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc10 - - -script/script.c:65: free 0x82fedc40 - - -script/script.c:65: free 0x82fedc70 - - -script/script.c:65: free 0x82fedc90 - - -script/script.c:65: free 0x82fedcc0 - - -script/script.c:65: free 0x82fedce0 - - -script/script.c:65: free 0x82fedd80 - - -script/script.c:65: free 0x82feddb0 - - -script/script.c:65: free 0x82feddd0 - - -script/script.c:65: free 0x82fedf00 - - -script/script.c:65: free 0x82fedf20 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedee0 - - -script/script.c:50: malloc 0x82fedec0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fede70 - - -script/script.c:65: free 0x82fede70 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedec0 - - -script/script.c:65: free 0x82fedee0 - - -script/lexer.c:322: token 287 text [function] - - -script/script.c:50: malloc 0x82fedee0 - - -script/script.c:50: malloc 0x82fedec0 - - -script/lexer.c:322: token 288 text [savedefault] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fede60 - - -script/lexer.c:322: token 266 text [{] - - -script/script.c:50: malloc 0x82fede30 - - -script/script.c:50: malloc 0x82fede10 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedde0 - - -script/script.c:50: malloc 0x82feddc0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fedc80 - - -script/script.c:50: malloc 0x82fedc60 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fedc30 - - -script/script.c:50: malloc 0x82fedb60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82feda80 - - -script/lexer.c:322: token 289 text [-z] - - -script/script.c:50: malloc 0x82feda50 - - -script/script.c:50: malloc 0x82feda30 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fed940 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fed8b0 - - -script/script.c:50: malloc 0x82fed890 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fed860 - - -script/script.c:50: malloc 0x82fed840 - - -script/lexer.c:322: token 289 text [boot_once] - - -script/script.c:50: malloc 0x82febde0 - - -script/script.c:50: malloc 0x82febdb0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82febd80 - - -script/script.c:50: malloc 0x82febd60 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fed910 - - -script/script.c:50: malloc 0x82febd40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febc40 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82febc10 - - -script/script.c:50: malloc 0x82febbf0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82febbc0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82febb90 - - -script/script.c:50: malloc 0x82febb70 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82febb40 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82feba00 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82feb9d0 - - -script/script.c:50: malloc 0x82feb9b0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82feb980 - - -script/script.c:50: malloc 0x82feb7b0 - - -script/lexer.c:322: token 289 text [saved_entry=] - - -script/script.c:50: malloc 0x82feb680 - - -script/script.c:50: malloc 0x82feb650 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82feb620 - - -script/script.c:50: malloc 0x82fe8900 - - -script/lexer.c:322: token 289 text [chosen] - - -script/script.c:50: malloc 0x82fe88d0 - - -script/script.c:50: malloc 0x82fe88b0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe8880 - - -script/script.c:50: malloc 0x82fe8860 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe8830 - - -script/script.c:50: malloc 0x82fe8810 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe87e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe87b0 - - -script/script.c:50: malloc 0x82fe8790 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe86a0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe8680 - - -script/lexer.c:322: token 288 text [save_env] - - -script/script.c:50: malloc 0x82fe8590 - - -script/script.c:50: malloc 0x82fe8570 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe8540 - - -script/lexer.c:322: token 288 text [saved_entry] - - -script/script.c:50: malloc 0x82fe8450 - - -script/script.c:50: malloc 0x82fe8420 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe83f0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe83c0 - - -script/script.c:50: malloc 0x82fe83a0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe8370 - - -script/script.c:294: append command - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe8290 - - -script/script.c:50: malloc 0x82fe8270 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe8240 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe8220 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe81f0 - - -script/script.c:50: malloc 0x82fe81d0 - - -script/lexer.c:322: token 267 text [}] - - -script/script.c:50: malloc 0x82fe80f0 - - -script/script.c:50: malloc 0x82fe80d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe8020 - - -script/script.c:50: malloc 0x82fe8000 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe81a0 - - -script/script.c:50: malloc 0x82fe8180 - - -script/script.c:294: append command - - -script/script.c:65: free 0x82fe8180 - - -script/script.c:65: free 0x82fe81a0 - - -script/script.c:65: free 0x82fe8000 - - -script/script.c:65: free 0x82fe8020 - - -script/script.c:65: free 0x82fede60 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedec0 - - -script/script.c:65: free 0x82fedee0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedc00 - - -script/script.c:50: malloc 0x82fedbe0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fedf00 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedf00 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc00 - - -script/lexer.c:322: token 287 text [function] - - -script/script.c:50: malloc 0x82fedc00 - - -script/script.c:50: malloc 0x82fedbe0 - - -script/lexer.c:322: token 288 text [load_video] - - -script/script.c:50: malloc 0x82fe81a0 - - -script/script.c:50: malloc 0x82fe8170 - - -script/lexer.c:322: token 266 text [{] - - -script/script.c:50: malloc 0x82fe8020 - - -script/script.c:50: malloc 0x82fe8000 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe7fd0 - - -script/script.c:50: malloc 0x82fe7fb0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fe7e60 - - -script/script.c:50: malloc 0x82fe7e40 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fe7e10 - - -script/script.c:50: malloc 0x82fe7d40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7d10 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fe7c70 - - -script/script.c:50: malloc 0x82fe7c50 - - -script/lexer.c:322: token 289 text [feature_all_video_module] - - -script/script.c:50: malloc 0x82fe7c20 - - -script/script.c:50: malloc 0x82fe7bf0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe7ce0 - - -script/script.c:50: malloc 0x82fe7bd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7ba0 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fe7b70 - - -script/script.c:50: malloc 0x82fe7b50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7b20 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fe7af0 - - -script/script.c:50: malloc 0x82fe7ad0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7aa0 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fe7a70 - - -script/script.c:50: malloc 0x82fe7a50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7a20 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fe79f0 - - -script/script.c:50: malloc 0x82fe79d0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe79a0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe7980 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fe7950 - - -script/script.c:50: malloc 0x82fe7930 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe7900 - - -script/script.c:50: malloc 0x82fe78e0 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe77f0 - - -script/script.c:50: malloc 0x82fe77d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe77a0 - - -script/lexer.c:322: token 288 text [all_video] - - -script/script.c:50: malloc 0x82fe7770 - - -script/script.c:50: malloc 0x82fe7740 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7710 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe76e0 - - -script/script.c:50: malloc 0x82fe76c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe7690 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe7670 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82fe7590 - - -script/script.c:50: malloc 0x82fe7570 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe7540 - - -script/script.c:50: malloc 0x82fe7520 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe7430 - - -script/script.c:50: malloc 0x82fe7410 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe73e0 - - -script/lexer.c:322: token 288 text [efi_gop] - - -script/script.c:50: malloc 0x82fe73b0 - - -script/script.c:50: malloc 0x82fe7390 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7360 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe7330 - - -script/script.c:50: malloc 0x82fe7310 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe72e0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe72c0 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe71d0 - - -script/script.c:50: malloc 0x82fe71b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7180 - - -script/lexer.c:322: token 288 text [efi_uga] - - -script/script.c:50: malloc 0x82fe7150 - - -script/script.c:50: malloc 0x82fe7130 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7100 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe70d0 - - -script/script.c:50: malloc 0x82fe70b0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe7080 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe6f90 - - -script/script.c:50: malloc 0x82fe6f70 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6f40 - - -script/lexer.c:322: token 288 text [ieee1275_fb] - - -script/script.c:50: malloc 0x82fe6f10 - - -script/script.c:50: malloc 0x82fe6ee0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6eb0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6e80 - - -script/script.c:50: malloc 0x82fe6e60 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe6e30 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe6d40 - - -script/script.c:50: malloc 0x82fe6d20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6cf0 - - -script/lexer.c:322: token 288 text [vbe] - - -script/script.c:50: malloc 0x82fe6cc0 - - -script/script.c:50: malloc 0x82fe6ca0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6c70 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6c40 - - -script/script.c:50: malloc 0x82fe6c20 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe6bf0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe6b00 - - -script/script.c:50: malloc 0x82fe6ae0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6ab0 - - -script/lexer.c:322: token 288 text [vga] - - -script/script.c:50: malloc 0x82fe6a80 - - -script/script.c:50: malloc 0x82fe6a60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6a30 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6a00 - - -script/script.c:50: malloc 0x82fe69e0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe69b0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe68c0 - - -script/script.c:50: malloc 0x82fe68a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6870 - - -script/lexer.c:322: token 288 text [video_bochs] - - -script/script.c:50: malloc 0x82fe6840 - - -script/script.c:50: malloc 0x82fe6810 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe67e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe67b0 - - -script/script.c:50: malloc 0x82fe6790 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe6760 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe6670 - - -script/script.c:50: malloc 0x82fe6650 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6620 - - -script/lexer.c:322: token 288 text [video_cirrus] - - -script/script.c:50: malloc 0x82fe65f0 - - -script/script.c:50: malloc 0x82fe65c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6590 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6560 - - -script/script.c:50: malloc 0x82fe6540 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe6510 - - -script/script.c:294: append command - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe6430 - - -script/script.c:50: malloc 0x82fe6410 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe63e0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe63c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6390 - - -script/script.c:50: malloc 0x82fe6370 - - -script/lexer.c:322: token 267 text [}] - - -script/script.c:50: malloc 0x82fe6290 - - -script/script.c:50: malloc 0x82fe6270 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe61c0 - - -script/script.c:50: malloc 0x82fe61a0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe6340 - - -script/script.c:50: malloc 0x82fe6320 - - -script/script.c:294: append command - - -script/script.c:65: free 0x82fe6320 - - -script/script.c:65: free 0x82fe6340 - - -script/script.c:65: free 0x82fe61a0 - - -script/script.c:65: free 0x82fe61c0 - - -script/script.c:65: free 0x82fe8170 - - -script/script.c:65: free 0x82fe81a0 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc00 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedc00 - - -script/script.c:50: malloc 0x82fedbe0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc00 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fedbe0 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe81a0 - - -script/lexer.c:322: token 289 text [menu_color_normal=magenta/black] - - -script/script.c:50: malloc 0x82fe61c0 - - -script/script.c:50: malloc 0x82fe6180 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6150 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6120 - - -script/script.c:50: malloc 0x82fe6100 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe60d0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82febd10 - - -script/script.c:50: malloc 0x82fe6350 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe6330 - - -script/script.c:65: free 0x82fe6330 - - -script/script.c:65: free 0x82fe6350 - - -script/script.c:65: free 0x82febd10 - - -script/script.c:65: free 0x82fe60d0 - - -script/script.c:65: free 0x82fe6100 - - -script/script.c:65: free 0x82fe6120 - - -script/script.c:65: free 0x82fe6150 - - -script/script.c:65: free 0x82fe6180 - - -script/script.c:65: free 0x82fe61c0 - - -script/script.c:65: free 0x82fe81a0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedbe0 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fedbe0 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe81a0 - - -script/lexer.c:322: token 289 text [menu_color_highlight=white/magenta] - - -script/script.c:50: malloc 0x82fe61c0 - - -script/script.c:50: malloc 0x82fe6180 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6150 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe6120 - - -script/script.c:50: malloc 0x82fe6100 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe60d0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82febd10 - - -script/script.c:50: malloc 0x82fe60b0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe6090 - - -script/script.c:65: free 0x82fe6090 - - -script/script.c:65: free 0x82fe60b0 - - -script/script.c:65: free 0x82febd10 - - -script/script.c:65: free 0x82fe60d0 - - -script/script.c:65: free 0x82fe6100 - - -script/script.c:65: free 0x82fe6120 - - -script/script.c:65: free 0x82fe6150 - - -script/script.c:65: free 0x82fe6180 - - -script/script.c:65: free 0x82fe61c0 - - -script/script.c:65: free 0x82fe81a0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedbe0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedc00 - - -script/script.c:50: malloc 0x82fedbe0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedbe0 - - -script/script.c:65: free 0x82fedc00 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82fedbf0 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82febd10 - - -script/script.c:50: malloc 0x82fe7df0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7dc0 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fe6340 - - -script/script.c:50: malloc 0x82fe6320 - - -script/lexer.c:322: token 289 text [feature_default_font_path] - - -script/script.c:50: malloc 0x82fe61c0 - - -script/script.c:50: malloc 0x82fe6180 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe62f0 - - -script/script.c:50: malloc 0x82fe6160 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6130 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fe6100 - - -script/script.c:50: malloc 0x82fe60e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe60b0 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fe6080 - - -script/script.c:50: malloc 0x82fe6060 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6030 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fe6000 - - -script/script.c:50: malloc 0x82fe5fe0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5fb0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fe5f80 - - -script/script.c:50: malloc 0x82fe5f60 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5f30 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe5f10 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fe5ee0 - - -script/script.c:50: malloc 0x82fe5ec0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5e90 - - -script/script.c:50: malloc 0x82fe5e70 - - -script/lexer.c:322: token 289 text [font=unicode] - - -script/script.c:50: malloc 0x82fe5d80 - - -script/script.c:50: malloc 0x82fe5d50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5d20 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5cf0 - - -script/script.c:50: malloc 0x82fe5cd0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5ca0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe5c80 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82fe5ba0 - - -script/script.c:50: malloc 0x82fe5b80 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5b50 - - -script/script.c:50: malloc 0x82fe5b30 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe5a40 - - -script/script.c:50: malloc 0x82fe5a20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe59f0 - - -script/lexer.c:322: token 288 text [part_msdos] - - -script/script.c:50: malloc 0x82fe59c0 - - -script/script.c:50: malloc 0x82fe5990 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5960 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5930 - - -script/script.c:50: malloc 0x82fe5910 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe58e0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe58c0 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe57e0 - - -script/script.c:50: malloc 0x82fe57c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5790 - - -script/lexer.c:322: token 288 text [ext2] - - -script/script.c:50: malloc 0x82fe5760 - - -script/script.c:50: malloc 0x82fe5740 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5710 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe56e0 - - -script/script.c:50: malloc 0x82fe56c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5690 - - -script/script.c:294: append command - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fe5580 - - -script/script.c:50: malloc 0x82fe5560 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fe5530 - - -script/script.c:50: malloc 0x82fe5510 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe54e0 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fe5440 - - -script/script.c:50: malloc 0x82fe5420 - - -script/lexer.c:322: token 289 text [feature_platform_search_hint] - - -script/script.c:50: malloc 0x82fe53f0 - - -script/script.c:50: malloc 0x82fe53b0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe54b0 - - -script/script.c:50: malloc 0x82fe5390 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5360 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fe5330 - - -script/script.c:50: malloc 0x82fe5310 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe52e0 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fe52b0 - - -script/script.c:50: malloc 0x82fe5290 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5260 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fe5230 - - -script/script.c:50: malloc 0x82fe5210 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe51e0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fe51b0 - - -script/script.c:50: malloc 0x82fe5190 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5160 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe5140 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fe5110 - - -script/script.c:50: malloc 0x82fe50f0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe50c0 - - -script/script.c:50: malloc 0x82fe50a0 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82fe5070 - - -script/script.c:50: malloc 0x82fe5050 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5020 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82fe4ee0 - - -script/script.c:50: malloc 0x82fe4eb0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4e80 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82fe4e50 - - -script/script.c:50: malloc 0x82fe4e20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4df0 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82fe4dc0 - - -script/script.c:50: malloc 0x82fe4d90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4d60 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82fe4c50 - - -script/script.c:50: malloc 0x82fe4c10 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4be0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4bb0 - - -script/script.c:50: malloc 0x82fe4b90 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe4b60 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe4b40 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82fe4a60 - - -script/script.c:50: malloc 0x82fe4a40 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4a10 - - -script/script.c:50: malloc 0x82fe49f0 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82fe49c0 - - -script/script.c:50: malloc 0x82fe49a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4970 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82fe4830 - - -script/script.c:50: malloc 0x82fe4800 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe47d0 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82fe47a0 - - -script/script.c:50: malloc 0x82fe4770 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4740 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82fe4710 - - -script/script.c:50: malloc 0x82fe46e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe46b0 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82fe4680 - - -script/script.c:50: malloc 0x82fe4640 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4610 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe45e0 - - -script/script.c:50: malloc 0x82fe45c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe4590 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe4570 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe4490 - - -script/script.c:50: malloc 0x82fe4470 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe4440 - - -script/script.c:294: append command - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4410 - - -script/script.c:50: malloc 0x82fe43f0 - - -script/lexer.c:322: token 289 text [font=] - - -script/script.c:50: malloc 0x82fe42b0 - - -script/script.c:50: malloc 0x82fe4290 - - -script/lexer.c:322: token 289 text [/usr/share/grub/unicode.pf2] - - -script/script.c:50: malloc 0x82fe4260 - - -script/script.c:50: malloc 0x82fe4220 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe41f0 - - -script/script.c:50: malloc 0x82fe41d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe41a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4170 - - -script/script.c:50: malloc 0x82fe4150 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe4120 - - -script/script.c:294: append command - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe4040 - - -script/script.c:50: malloc 0x82fe4020 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe3ff0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe3fc0 - - -script/script.c:50: malloc 0x82fe3fa0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe40f0 - - -script/script.c:50: malloc 0x82fe40d0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe3f80 - - -script/script.c:65: free 0x82fe3f80 - - -script/script.c:65: free 0x82fe40d0 - - -script/script.c:65: free 0x82fe40f0 - - -script/script.c:65: free 0x82fe3fa0 - - -script/script.c:65: free 0x82fe3fc0 - - -script/script.c:65: free 0x82fe3ff0 - - -script/script.c:65: free 0x82fe4020 - - -script/script.c:65: free 0x82fe4040 - - -script/script.c:65: free 0x82fe4120 - - -script/script.c:65: free 0x82fe4150 - - -script/script.c:65: free 0x82fe4170 - - -script/script.c:65: free 0x82fe41a0 - - -script/script.c:65: free 0x82fe41d0 - - -script/script.c:65: free 0x82fe41f0 - - -script/script.c:65: free 0x82fe4220 - - -script/script.c:65: free 0x82fe4260 - - -script/script.c:65: free 0x82fe4290 - - -script/script.c:65: free 0x82fe42b0 - - -script/script.c:65: free 0x82fe43f0 - - -script/script.c:65: free 0x82fe4410 - - -script/script.c:65: free 0x82fe4440 - - -script/script.c:65: free 0x82fe4470 - - -script/script.c:65: free 0x82fe4490 - - -script/script.c:65: free 0x82fe4570 - - -script/script.c:65: free 0x82fe4590 - - -script/script.c:65: free 0x82fe45c0 - - -script/script.c:65: free 0x82fe45e0 - - -script/script.c:65: free 0x82fe4610 - - -script/script.c:65: free 0x82fe4640 - - -script/script.c:65: free 0x82fe4680 - - -script/script.c:65: free 0x82fe46b0 - - -script/script.c:65: free 0x82fe46e0 - - -script/script.c:65: free 0x82fe4710 - - -script/script.c:65: free 0x82fe4740 - - -script/script.c:65: free 0x82fe4770 - - -script/script.c:65: free 0x82fe47a0 - - -script/script.c:65: free 0x82fe47d0 - - -script/script.c:65: free 0x82fe4800 - - -script/script.c:65: free 0x82fe4830 - - -script/script.c:65: free 0x82fe4970 - - -script/script.c:65: free 0x82fe49a0 - - -script/script.c:65: free 0x82fe49c0 - - -script/script.c:65: free 0x82fe49f0 - - -script/script.c:65: free 0x82fe4a10 - - -script/script.c:65: free 0x82fe4a40 - - -script/script.c:65: free 0x82fe4a60 - - -script/script.c:65: free 0x82fe4b40 - - -script/script.c:65: free 0x82fe4b60 - - -script/script.c:65: free 0x82fe4b90 - - -script/script.c:65: free 0x82fe4bb0 - - -script/script.c:65: free 0x82fe4be0 - - -script/script.c:65: free 0x82fe4c10 - - -script/script.c:65: free 0x82fe4c50 - - -script/script.c:65: free 0x82fe4d60 - - -script/script.c:65: free 0x82fe4d90 - - -script/script.c:65: free 0x82fe4dc0 - - -script/script.c:65: free 0x82fe4df0 - - -script/script.c:65: free 0x82fe4e20 - - -script/script.c:65: free 0x82fe4e50 - - -script/script.c:65: free 0x82fe4e80 - - -script/script.c:65: free 0x82fe4eb0 - - -script/script.c:65: free 0x82fe4ee0 - - -script/script.c:65: free 0x82fe5020 - - -script/script.c:65: free 0x82fe5050 - - -script/script.c:65: free 0x82fe5070 - - -script/script.c:65: free 0x82fe50a0 - - -script/script.c:65: free 0x82fe50c0 - - -script/script.c:65: free 0x82fe50f0 - - -script/script.c:65: free 0x82fe5110 - - -script/script.c:65: free 0x82fe5140 - - -script/script.c:65: free 0x82fe5160 - - -script/script.c:65: free 0x82fe5190 - - -script/script.c:65: free 0x82fe51b0 - - -script/script.c:65: free 0x82fe51e0 - - -script/script.c:65: free 0x82fe5210 - - -script/script.c:65: free 0x82fe5230 - - -script/script.c:65: free 0x82fe5260 - - -script/script.c:65: free 0x82fe5290 - - -script/script.c:65: free 0x82fe52b0 - - -script/script.c:65: free 0x82fe52e0 - - -script/script.c:65: free 0x82fe5310 - - -script/script.c:65: free 0x82fe5330 - - -script/script.c:65: free 0x82fe5360 - - -script/script.c:65: free 0x82fe5390 - - -script/script.c:65: free 0x82fe54b0 - - -script/script.c:65: free 0x82fe53b0 - - -script/script.c:65: free 0x82fe53f0 - - -script/script.c:65: free 0x82fe5420 - - -script/script.c:65: free 0x82fe5440 - - -script/script.c:65: free 0x82fe54e0 - - -script/script.c:65: free 0x82fe5510 - - -script/script.c:65: free 0x82fe5530 - - -script/script.c:65: free 0x82fe5560 - - -script/script.c:65: free 0x82fe5580 - - -script/script.c:65: free 0x82fe5690 - - -script/script.c:65: free 0x82fe56c0 - - -script/script.c:65: free 0x82fe56e0 - - -script/script.c:65: free 0x82fe5710 - - -script/script.c:65: free 0x82fe5740 - - -script/script.c:65: free 0x82fe5760 - - -script/script.c:65: free 0x82fe5790 - - -script/script.c:65: free 0x82fe57c0 - - -script/script.c:65: free 0x82fe57e0 - - -script/script.c:65: free 0x82fe58c0 - - -script/script.c:65: free 0x82fe58e0 - - -script/script.c:65: free 0x82fe5910 - - -script/script.c:65: free 0x82fe5930 - - -script/script.c:65: free 0x82fe5960 - - -script/script.c:65: free 0x82fe5990 - - -script/script.c:65: free 0x82fe59c0 - - -script/script.c:65: free 0x82fe59f0 - - -script/script.c:65: free 0x82fe5a20 - - -script/script.c:65: free 0x82fe5a40 - - -script/script.c:65: free 0x82fe5b30 - - -script/script.c:65: free 0x82fe5b50 - - -script/script.c:65: free 0x82fe5b80 - - -script/script.c:65: free 0x82fe5ba0 - - -script/script.c:65: free 0x82fe5c80 - - -script/script.c:65: free 0x82fe5ca0 - - -script/script.c:65: free 0x82fe5cd0 - - -script/script.c:65: free 0x82fe5cf0 - - -script/script.c:65: free 0x82fe5d20 - - -script/script.c:65: free 0x82fe5d50 - - -script/script.c:65: free 0x82fe5d80 - - -script/script.c:65: free 0x82fe5e70 - - -script/script.c:65: free 0x82fe5e90 - - -script/script.c:65: free 0x82fe5ec0 - - -script/script.c:65: free 0x82fe5ee0 - - -script/script.c:65: free 0x82fe5f10 - - -script/script.c:65: free 0x82fe5f30 - - -script/script.c:65: free 0x82fe5f60 - - -script/script.c:65: free 0x82fe5f80 - - -script/script.c:65: free 0x82fe5fb0 - - -script/script.c:65: free 0x82fe5fe0 - - -script/script.c:65: free 0x82fe6000 - - -script/script.c:65: free 0x82fe6030 - - -script/script.c:65: free 0x82fe6060 - - -script/script.c:65: free 0x82fe6080 - - -script/script.c:65: free 0x82fe60b0 - - -script/script.c:65: free 0x82fe60e0 - - -script/script.c:65: free 0x82fe6100 - - -script/script.c:65: free 0x82fe6130 - - -script/script.c:65: free 0x82fe6160 - - -script/script.c:65: free 0x82fe62f0 - - -script/script.c:65: free 0x82fe6180 - - -script/script.c:65: free 0x82fe61c0 - - -script/script.c:65: free 0x82fe6320 - - -script/script.c:65: free 0x82fe6340 - - -script/script.c:65: free 0x82fe7dc0 - - -script/script.c:65: free 0x82fe7df0 - - -script/script.c:65: free 0x82febd10 - - -script/script.c:65: free 0x82fedbf0 - - -script/script.c:65: free 0x82fede90 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fedbe0 - - -script/script.c:50: malloc 0x82fedbc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fede90 - - -script/script.c:50: malloc 0x82febd20 - - -script/script.c:65: free 0x82febd20 - - -script/script.c:65: free 0x82fede90 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fedbe0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82febd10 - - -script/script.c:50: malloc 0x82fe81b0 - - -script/lexer.c:322: token 288 text [loadfont] - - -script/script.c:50: malloc 0x82fe8180 - - -script/script.c:50: malloc 0x82fe8160 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe7de0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe61c0 - - -script/script.c:50: malloc 0x82fe61a0 - - -script/lexer.c:322: token 289 text [font] - - -script/script.c:50: malloc 0x82fe6170 - - -script/script.c:50: malloc 0x82fe6150 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fedbc0 - - -script/script.c:50: malloc 0x82fe6130 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe6100 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fe60d0 - - -script/script.c:50: malloc 0x82fe60b0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe6080 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe6060 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fe6030 - - -script/script.c:50: malloc 0x82fe6010 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5fe0 - - -script/script.c:50: malloc 0x82fe5fc0 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe5ed0 - - -script/script.c:50: malloc 0x82fe5eb0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5e80 - - -script/lexer.c:322: token 289 text [gfxmode=auto] - - -script/script.c:50: malloc 0x82fe5d80 - - -script/script.c:50: malloc 0x82fe5d50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5d20 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5cf0 - - -script/script.c:50: malloc 0x82fe5cd0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5ca0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe5c80 - - -script/lexer.c:322: token 288 text [load_video] - - -script/script.c:50: malloc 0x82fe5a40 - - -script/script.c:50: malloc 0x82fe5a10 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe59e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe59b0 - - -script/script.c:50: malloc 0x82fe5990 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5960 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe57e0 - - -script/script.c:50: malloc 0x82fe57c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5790 - - -script/lexer.c:322: token 288 text [gfxterm] - - -script/script.c:50: malloc 0x82fe5760 - - -script/script.c:50: malloc 0x82fe5740 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5710 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe56e0 - - -script/script.c:50: malloc 0x82fe56c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5690 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe54b0 - - -script/script.c:50: malloc 0x82fe5490 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5460 - - -script/lexer.c:322: token 289 text [locale_dir=] - - -script/script.c:50: malloc 0x82fe53c0 - - -script/script.c:50: malloc 0x82fe5390 - - -script/lexer.c:322: token 289 text [prefix] - - -script/script.c:50: malloc 0x82fe5360 - - -script/script.c:50: malloc 0x82fe5340 - - -script/lexer.c:322: token 289 text [/locale] - - -script/script.c:50: malloc 0x82fe5310 - - -script/script.c:50: malloc 0x82fe52f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe52c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5290 - - -script/script.c:50: malloc 0x82fe5270 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe5240 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe5150 - - -script/script.c:50: malloc 0x82fe5130 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5100 - - -script/lexer.c:322: token 289 text [lang=en_US] - - -script/script.c:50: malloc 0x82fe50d0 - - -script/script.c:50: malloc 0x82fe50a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe5070 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe5040 - - -script/script.c:50: malloc 0x82fe5020 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe4ee0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe4df0 - - -script/script.c:50: malloc 0x82fe4dd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4da0 - - -script/lexer.c:322: token 288 text [gettext] - - -script/script.c:50: malloc 0x82fe4d70 - - -script/script.c:50: malloc 0x82fe4d50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe4d20 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4cf0 - - -script/script.c:50: malloc 0x82fe4cd0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe4ca0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fe4bc0 - - -script/script.c:50: malloc 0x82fe4ba0 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fe4b70 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe4b40 - - -script/script.c:50: malloc 0x82fe4a70 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe4c70 - - -script/script.c:50: malloc 0x82fe4c50 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe4a50 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2048 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2816 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=18176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605120 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34621504 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605184 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34623680 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fe0e10, size 0x34c0 - - -kern/dl.c:620: relocating to 0x82fefe70 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=0 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=40277760 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fdf300, size 0x1af4 - - -kern/dl.c:620: relocating to 0x82fefa50 - - -kern/arm/dl.c:102: trampoline size c - - -kern/dl.c:553: flushing 0x18f4 bytes at 0x82fdd9f0 - - -kern/dl.c:643: module name: video - - -kern/dl.c:644: init function: 0x0 - - -kern/arm/dl.c:102: trampoline size 24 - - -kern/dl.c:553: flushing 0x34f8 bytes at 0x82fa8da0 - - -kern/dl.c:643: module name: font - - -kern/dl.c:644: init function: 0x82faa9b0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605248 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530048 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530112 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530240 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530304 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530368 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530432 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530496 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530560 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530624 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530688 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530752 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530816 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530880 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22530944 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=22531008 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34623616 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fef150, size 0x2d4 - - -kern/dl.c:620: relocating to 0x82fef650 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x10d bytes at 0x82fef510 - - -kern/dl.c:643: module name: all_video - - -kern/dl.c:644: init function: 0x0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34624192 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fe1db0, size 0x2560 - - -kern/dl.c:620: relocating to 0x82fef300 - - -kern/arm/dl.c:102: trampoline size c - - -kern/dl.c:553: flushing 0x2398 bytes at 0x82fdfa00 - - -kern/dl.c:643: module name: gfxterm - - -kern/dl.c:644: init function: 0x82fe0e48 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82fe4a50 - - -script/script.c:65: free 0x82fe4c50 - - -script/script.c:65: free 0x82fe4c70 - - -script/script.c:65: free 0x82fe4a70 - - -script/script.c:65: free 0x82fe4b40 - - -script/script.c:65: free 0x82fe4b70 - - -script/script.c:65: free 0x82fe4ba0 - - -script/script.c:65: free 0x82fe4bc0 - - -script/script.c:65: free 0x82fe4ca0 - - -script/script.c:65: free 0x82fe4cd0 - - -script/script.c:65: free 0x82fe4cf0 - - -script/script.c:65: free 0x82fe4d20 - - -script/script.c:65: free 0x82fe4d50 - - -script/script.c:65: free 0x82fe4d70 - - -script/script.c:65: free 0x82fe4da0 - - -script/script.c:65: free 0x82fe4dd0 - - -script/script.c:65: free 0x82fe4df0 - - -script/script.c:65: free 0x82fe4ee0 - - -script/script.c:65: free 0x82fe5020 - - -script/script.c:65: free 0x82fe5040 - - -script/script.c:65: free 0x82fe5070 - - -script/script.c:65: free 0x82fe50a0 - - -script/script.c:65: free 0x82fe50d0 - - -script/script.c:65: free 0x82fe5100 - - -script/script.c:65: free 0x82fe5130 - - -script/script.c:65: free 0x82fe5150 - - -script/script.c:65: free 0x82fe5240 - - -script/script.c:65: free 0x82fe5270 - - -script/script.c:65: free 0x82fe5290 - - -script/script.c:65: free 0x82fe52c0 - - -script/script.c:65: free 0x82fe52f0 - - -script/script.c:65: free 0x82fe5310 - - -script/script.c:65: free 0x82fe5340 - - -script/script.c:65: free 0x82fe5360 - - -script/script.c:65: free 0x82fe5390 - - -script/script.c:65: free 0x82fe53c0 - - -script/script.c:65: free 0x82fe5460 - - -script/script.c:65: free 0x82fe5490 - - -script/script.c:65: free 0x82fe54b0 - - -script/script.c:65: free 0x82fe5690 - - -script/script.c:65: free 0x82fe56c0 - - -script/script.c:65: free 0x82fe56e0 - - -script/script.c:65: free 0x82fe5710 - - -script/script.c:65: free 0x82fe5740 - - -script/script.c:65: free 0x82fe5760 - - -script/script.c:65: free 0x82fe5790 - - -script/script.c:65: free 0x82fe57c0 - - -script/script.c:65: free 0x82fe57e0 - - -script/script.c:65: free 0x82fe5960 - - -script/script.c:65: free 0x82fe5990 - - -script/script.c:65: free 0x82fe59b0 - - -script/script.c:65: free 0x82fe59e0 - - -script/script.c:65: free 0x82fe5a10 - - -script/script.c:65: free 0x82fe5a40 - - -script/script.c:65: free 0x82fe5c80 - - -script/script.c:65: free 0x82fe5ca0 - - -script/script.c:65: free 0x82fe5cd0 - - -script/script.c:65: free 0x82fe5cf0 - - -script/script.c:65: free 0x82fe5d20 - - -script/script.c:65: free 0x82fe5d50 - - -script/script.c:65: free 0x82fe5d80 - - -script/script.c:65: free 0x82fe5e80 - - -script/script.c:65: free 0x82fe5eb0 - - -script/script.c:65: free 0x82fe5ed0 - - -script/script.c:65: free 0x82fe5fc0 - - -script/script.c:65: free 0x82fe5fe0 - - -script/script.c:65: free 0x82fe6010 - - -script/script.c:65: free 0x82fe6030 - - -script/script.c:65: free 0x82fe6060 - - -script/script.c:65: free 0x82fe6080 - - -script/script.c:65: free 0x82fe60b0 - - -script/script.c:65: free 0x82fe60d0 - - -script/script.c:65: free 0x82fe6100 - - -script/script.c:65: free 0x82fe6130 - - -script/script.c:65: free 0x82fedbc0 - - -script/script.c:65: free 0x82fe6150 - - -script/script.c:65: free 0x82fe6170 - - -script/script.c:65: free 0x82fe61a0 - - -script/script.c:65: free 0x82fe61c0 - - -script/script.c:65: free 0x82fe7de0 - - -script/script.c:65: free 0x82fe8160 - - -script/script.c:65: free 0x82fe8180 - - -script/script.c:65: free 0x82fe81b0 - - -script/script.c:65: free 0x82febd10 - - -script/lexer.c:322: token 288 text [terminal_output] - - -script/script.c:50: malloc 0x82fe21c0 - - -script/script.c:50: malloc 0x82fe2190 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe2160 - - -script/lexer.c:322: token 288 text [gfxterm] - - -script/script.c:50: malloc 0x82fe2130 - - -script/script.c:50: malloc 0x82fe2110 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe20e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe20b0 - - -script/script.c:50: malloc 0x82fe2090 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe2060 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe2280 - - -script/script.c:50: malloc 0x82fe2260 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe2040 - - -error: no suitable video mode found. - - -script/script.c:65: free 0x82fe2040 - - -script/script.c:65: free 0x82fe2260 - - -script/script.c:65: free 0x82fe2280 - - -script/script.c:65: free 0x82fe2060 - - -script/script.c:65: free 0x82fe2090 - - -script/script.c:65: free 0x82fe20b0 - - -script/script.c:65: free 0x82fe20e0 - - -script/script.c:65: free 0x82fe2110 - - -script/script.c:65: free 0x82fe2130 - - -script/script.c:65: free 0x82fe2160 - - -script/script.c:65: free 0x82fe2190 - - -script/script.c:65: free 0x82fe21c0 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fe21a0 - - -script/script.c:50: malloc 0x82fe2180 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fe2050 - - -script/script.c:50: malloc 0x82fe2030 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe2000 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fe1f60 - - -script/script.c:50: malloc 0x82fe1f40 - - -script/lexer.c:322: token 289 text [feature_timeout_style] - - -script/script.c:50: malloc 0x82fe1f10 - - -script/script.c:50: malloc 0x82fe1ee0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe1fd0 - - -script/script.c:50: malloc 0x82fe1ec0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1e90 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fe1e60 - - -script/script.c:50: malloc 0x82fe1e40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1e10 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fe1de0 - - -script/script.c:50: malloc 0x82fdf480 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf450 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fdf420 - - -script/script.c:50: malloc 0x82fdf400 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf3d0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fdf3a0 - - -script/script.c:50: malloc 0x82fdf380 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdf350 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdcaf0 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fdcac0 - - -script/script.c:50: malloc 0x82fdcaa0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdca70 - - -script/script.c:50: malloc 0x82fdca50 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fdc960 - - -script/script.c:50: malloc 0x82fdc940 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc910 - - -script/lexer.c:322: token 289 text [timeout_style=menu] - - -script/script.c:50: malloc 0x82fdc8e0 - - -script/script.c:50: malloc 0x82fdc8b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc880 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdc850 - - -script/script.c:50: malloc 0x82fdc830 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdc800 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdc7e0 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fdc6f0 - - -script/script.c:50: malloc 0x82fdc6d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc6a0 - - -script/lexer.c:322: token 289 text [timeout=1000] - - -script/script.c:50: malloc 0x82fdc670 - - -script/script.c:50: malloc 0x82fdc640 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc610 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdc5e0 - - -script/script.c:50: malloc 0x82fdc5c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdc590 - - -script/script.c:294: append command - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82fdc4b0 - - -script/script.c:50: malloc 0x82fdc490 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdc460 - - -script/script.c:50: malloc 0x82fdc440 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fdc350 - - -script/script.c:50: malloc 0x82fa03c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa0390 - - -script/lexer.c:322: token 289 text [timeout=1000] - - -script/script.c:50: malloc 0x82fa0360 - - -script/script.c:50: malloc 0x82fa0330 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa0300 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fa02d0 - - -script/script.c:50: malloc 0x82fa02b0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fa0280 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fa0260 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fa0180 - - -script/script.c:50: malloc 0x82fa0160 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fa0130 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fa0100 - - -script/script.c:50: malloc 0x82fa00e0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fa0230 - - -script/script.c:50: malloc 0x82fa0210 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fa00c0 - - -script/script.c:65: free 0x82fa00c0 - - -script/script.c:65: free 0x82fa0210 - - -script/script.c:65: free 0x82fa0230 - - -script/script.c:65: free 0x82fa00e0 - - -script/script.c:65: free 0x82fa0100 - - -script/script.c:65: free 0x82fa0130 - - -script/script.c:65: free 0x82fa0160 - - -script/script.c:65: free 0x82fa0180 - - -script/script.c:65: free 0x82fa0260 - - -script/script.c:65: free 0x82fa0280 - - -script/script.c:65: free 0x82fa02b0 - - -script/script.c:65: free 0x82fa02d0 - - -script/script.c:65: free 0x82fa0300 - - -script/script.c:65: free 0x82fa0330 - - -script/script.c:65: free 0x82fa0360 - - -script/script.c:65: free 0x82fa0390 - - -script/script.c:65: free 0x82fa03c0 - - -script/script.c:65: free 0x82fdc350 - - -script/script.c:65: free 0x82fdc440 - - -script/script.c:65: free 0x82fdc460 - - -script/script.c:65: free 0x82fdc490 - - -script/script.c:65: free 0x82fdc4b0 - - -script/script.c:65: free 0x82fdc590 - - -script/script.c:65: free 0x82fdc5c0 - - -script/script.c:65: free 0x82fdc5e0 - - -script/script.c:65: free 0x82fdc610 - - -script/script.c:65: free 0x82fdc640 - - -script/script.c:65: free 0x82fdc670 - - -script/script.c:65: free 0x82fdc6a0 - - -script/script.c:65: free 0x82fdc6d0 - - -script/script.c:65: free 0x82fdc6f0 - - -script/script.c:65: free 0x82fdc7e0 - - -script/script.c:65: free 0x82fdc800 - - -script/script.c:65: free 0x82fdc830 - - -script/script.c:65: free 0x82fdc850 - - -script/script.c:65: free 0x82fdc880 - - -script/script.c:65: free 0x82fdc8b0 - - -script/script.c:65: free 0x82fdc8e0 - - -script/script.c:65: free 0x82fdc910 - - -script/script.c:65: free 0x82fdc940 - - -script/script.c:65: free 0x82fdc960 - - -script/script.c:65: free 0x82fdca50 - - -script/script.c:65: free 0x82fdca70 - - -script/script.c:65: free 0x82fdcaa0 - - -script/script.c:65: free 0x82fdcac0 - - -script/script.c:65: free 0x82fdcaf0 - - -script/script.c:65: free 0x82fdf350 - - -script/script.c:65: free 0x82fdf380 - - -script/script.c:65: free 0x82fdf3a0 - - -script/script.c:65: free 0x82fdf3d0 - - -script/script.c:65: free 0x82fdf400 - - -script/script.c:65: free 0x82fdf420 - - -script/script.c:65: free 0x82fdf450 - - -script/script.c:65: free 0x82fdf480 - - -script/script.c:65: free 0x82fe1de0 - - -script/script.c:65: free 0x82fe1e10 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e60 - - -script/script.c:65: free 0x82fe1e90 - - -script/script.c:65: free 0x82fe1ec0 - - -script/script.c:65: free 0x82fe1fd0 - - -script/script.c:65: free 0x82fe1ee0 - - -script/script.c:65: free 0x82fe1f10 - - -script/script.c:65: free 0x82fe1f40 - - -script/script.c:65: free 0x82fe1f60 - - -script/script.c:65: free 0x82fe2000 - - -script/script.c:65: free 0x82fe2030 - - -script/script.c:65: free 0x82fe2050 - - -script/script.c:65: free 0x82fe2180 - - -script/script.c:65: free 0x82fe21a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe2140 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe2110 - - -script/script.c:50: malloc 0x82fe20f0 - - -script/script.c:65: free 0x82fe20f0 - - -script/script.c:65: free 0x82fe2110 - - -script/script.c:65: free 0x82fe2140 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 288 text [menuentry] - - -script/script.c:50: malloc 0x82fe21c0 - - -script/script.c:50: malloc 0x82fe2190 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe2160 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe1e50 - - -script/script.c:50: malloc 0x82fe1e30 - - -script/lexer.c:322: token 289 text [Parabola GNU/Linux-libre, linux-libre - - -kernel] - - -script/script.c:50: malloc 0x82feed90 - - -script/script.c:50: malloc 0x82feed40 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe1f50 - - -script/script.c:50: malloc 0x82fdf480 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf450 - - -script/lexer.c:322: token 289 text [--class] - - -script/script.c:50: malloc 0x82fdf420 - - -script/script.c:50: malloc 0x82fdf400 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf3d0 - - -script/lexer.c:322: token 288 text [parabola] - - -script/script.c:50: malloc 0x82fdf3a0 - - -script/script.c:50: malloc 0x82fdf380 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf350 - - -script/lexer.c:322: token 289 text [--class] - - -script/script.c:50: malloc 0x82fdcae0 - - -script/script.c:50: malloc 0x82fdcac0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdca90 - - -script/lexer.c:322: token 289 text [gnu-linux] - - -script/script.c:50: malloc 0x82fdca60 - - -script/script.c:50: malloc 0x82fdca30 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc960 - - -script/lexer.c:322: token 289 text [--class] - - -script/script.c:50: malloc 0x82fdc930 - - -script/script.c:50: malloc 0x82fdc910 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc8e0 - - -script/lexer.c:322: token 288 text [gnu] - - -script/script.c:50: malloc 0x82fdc8b0 - - -script/script.c:50: malloc 0x82fdc890 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc860 - - -script/lexer.c:322: token 289 text [--class] - - -script/script.c:50: malloc 0x82fdc830 - - -script/script.c:50: malloc 0x82fdc810 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc7e0 - - -script/lexer.c:322: token 288 text [os] - - -script/script.c:50: malloc 0x82fdc6f0 - - -script/script.c:50: malloc 0x82fdc6d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc6a0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdc600 - - -script/script.c:50: malloc 0x82fdc5e0 - - -script/lexer.c:322: token 289 text [menuentry_id_option] - - -script/script.c:50: malloc 0x82fdc4b0 - - -script/script.c:50: malloc 0x82fdc480 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdc670 - - -script/script.c:50: malloc 0x82fdc5c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc590 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fa03b0 - - -script/script.c:50: malloc 0x82fa0390 - - -script/lexer.c:322: token 289 text - - -[gnulinux-linux-libre-advanced-5f96 - - -769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82fa0360 - - -script/script.c:50: malloc 0x82fa0300 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdc350 - - -script/script.c:50: malloc 0x82fa02e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa02b0 - - -script/lexer.c:322: token 266 text [{] - - -script/script.c:50: malloc 0x82fa0280 - - -script/script.c:50: malloc 0x82fa0260 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fa0120 - - -script/script.c:50: malloc 0x82fa0100 - - -script/lexer.c:322: token 288 text [load_video] - - -script/script.c:50: malloc 0x82fa0020 - - -script/script.c:50: malloc 0x82f9fff0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ffc0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9ff90 - - -script/script.c:50: malloc 0x82f9ff70 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9ff40 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9ff20 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82f9fe30 - - -script/script.c:50: malloc 0x82f9fe10 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fde0 - - -script/lexer.c:322: token 289 text [gfxpayload=keep] - - -script/script.c:50: malloc 0x82f9fdb0 - - -script/script.c:50: malloc 0x82f9fd80 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fd50 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9fd20 - - -script/script.c:50: malloc 0x82f9fd00 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9fcd0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82f9fbf0 - - -script/script.c:50: malloc 0x82f9fbd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fba0 - - -script/lexer.c:322: token 288 text [gzio] - - -script/script.c:50: malloc 0x82f9fb70 - - -script/script.c:50: malloc 0x82f9fb50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fb20 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9faf0 - - -script/script.c:50: malloc 0x82f9fad0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9faa0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82f9f9b0 - - -script/script.c:50: malloc 0x82f9f990 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f960 - - -script/lexer.c:322: token 288 text [part_msdos] - - -script/script.c:50: malloc 0x82f9f930 - - -script/script.c:50: malloc 0x82f9f900 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f8d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f8a0 - - -script/script.c:50: malloc 0x82f9f880 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9f850 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82f9f770 - - -script/script.c:50: malloc 0x82f9f750 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f720 - - -script/lexer.c:322: token 288 text [ext2] - - -script/script.c:50: malloc 0x82f9f6f0 - - -script/script.c:50: malloc 0x82f9f6d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f6a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f670 - - -script/script.c:50: malloc 0x82f9f650 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9f620 - - -script/script.c:294: append command - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82f9f510 - - -script/script.c:50: malloc 0x82f9f4f0 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82f9f4c0 - - -script/script.c:50: malloc 0x82f9f4a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f470 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82f9f3d0 - - -script/script.c:50: malloc 0x82f9f3b0 - - -script/lexer.c:322: token 289 text [feature_platform_search_hint] - - -script/script.c:50: malloc 0x82f9f380 - - -script/script.c:50: malloc 0x82f9f340 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9f440 - - -script/script.c:50: malloc 0x82f9f320 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f2f0 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82f9f2c0 - - -script/script.c:50: malloc 0x82f9f2a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f270 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82f9f240 - - -script/script.c:50: malloc 0x82f9f220 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f1f0 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82f9f1c0 - - -script/script.c:50: malloc 0x82f9f1a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f170 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82f9f140 - - -script/script.c:50: malloc 0x82f9f120 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9f0f0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9f0d0 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82f9f0a0 - - -script/script.c:50: malloc 0x82f9f080 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f050 - - -script/script.c:50: malloc 0x82f9f030 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82f9f000 - - -script/script.c:50: malloc 0x82f9efe0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9efb0 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82f9ee70 - - -script/script.c:50: malloc 0x82f9ee40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ee10 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82f9ede0 - - -script/script.c:50: malloc 0x82f9edb0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ed80 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82f9ed50 - - -script/script.c:50: malloc 0x82f9ed20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ecf0 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82f9ecc0 - - -script/script.c:50: malloc 0x82f9ec80 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ec50 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9ec20 - - -script/script.c:50: malloc 0x82f9ec00 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9ebd0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9ebb0 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82f94770 - - -script/script.c:50: malloc 0x82f94750 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f94720 - - -script/script.c:50: malloc 0x82f94700 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82f946d0 - - -script/script.c:50: malloc 0x82f946b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f94680 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82f94540 - - -script/script.c:50: malloc 0x82f94510 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f944e0 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82f944b0 - - -script/script.c:50: malloc 0x82f94480 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f94450 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82fa0230 - - -script/script.c:50: malloc 0x82fa0200 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa01d0 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82f94210 - - -script/script.c:50: malloc 0x82f941d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f941a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f94170 - - -script/script.c:50: malloc 0x82f94150 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f94120 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f94100 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82f94020 - - -script/script.c:50: malloc 0x82f94000 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82f93fd0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f93fa0 - - -script/script.c:50: malloc 0x82f93f80 - - -script/lexer.c:322: token 288 text [echo] - - -script/script.c:50: malloc 0x82f93e80 - - -script/script.c:50: malloc 0x82f93e60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93e30 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f93d80 - - -script/script.c:50: malloc 0x82f93d60 - - -script/lexer.c:322: token 289 text [Loading linux-libre kernel ...] - - -script/script.c:50: malloc 0x82f93d30 - - -script/script.c:50: malloc 0x82f93cf0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f93e00 - - -script/script.c:50: malloc 0x82f93cd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93ca0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f93c70 - - -script/script.c:50: malloc 0x82f93c50 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f93c20 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [linux] - - -script/script.c:50: malloc 0x82f93bf0 - - -script/script.c:50: malloc 0x82f93bd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93ba0 - - -script/lexer.c:322: token 289 text [/boot/vmlinuz-linux-libre] - - -script/script.c:50: malloc 0x82f93a40 - - -script/script.c:50: malloc 0x82f93a00 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f939d0 - - -script/lexer.c:322: token 289 text [root=/dev/mmcblk0p1] - - -script/script.c:50: malloc 0x82f939a0 - - -script/script.c:50: malloc 0x82f93970 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93940 - - -script/lexer.c:322: token 288 text [rw] - - -script/script.c:50: malloc 0x82f93910 - - -script/script.c:50: malloc 0x82f938f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f938c0 - - -script/lexer.c:322: token 288 text [debug] - - -script/script.c:50: malloc 0x82f93890 - - -script/script.c:50: malloc 0x82f93870 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93840 - - -script/lexer.c:322: token 288 text [ignore_loglevel] - - -script/script.c:50: malloc 0x82f93810 - - -script/script.c:50: malloc 0x82f937e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f937b0 - - -script/lexer.c:322: token 289 text [earlyprintk=serial,keep] - - -script/script.c:50: malloc 0x82f93780 - - -script/script.c:50: malloc 0x82f93750 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93720 - - -script/lexer.c:322: token 289 text [log_buf_len=16M] - - -script/script.c:50: malloc 0x82f936f0 - - -script/script.c:50: malloc 0x82f936c0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93690 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f93660 - - -script/script.c:50: malloc 0x82f93640 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f93610 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [echo] - - -script/script.c:50: malloc 0x82f93510 - - -script/script.c:50: malloc 0x82f934f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f934c0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f93410 - - -script/script.c:50: malloc 0x82f933f0 - - -script/lexer.c:322: token 289 text [Loading devices tree file ...] - - -script/script.c:50: malloc 0x82f933c0 - - -script/script.c:50: malloc 0x82f93380 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f93490 - - -script/script.c:50: malloc 0x82f93360 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93330 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f93300 - - -script/script.c:50: malloc 0x82f932e0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f932b0 - - -script/script.c:294: append command - - -script/lexer.c:322: token 288 text [devicetree] - - -script/script.c:50: malloc 0x82f931a0 - - -script/script.c:50: malloc 0x82f93170 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f93140 - - -script/lexer.c:322: token 289 text - - -[/boot/dtbs/linux-libre/am335x-bone - - -black.dtb] - - -script/script.c:50: malloc 0x82f94420 - - -script/script.c:50: malloc 0x82f943d0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f943a0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f94370 - - -script/script.c:50: malloc 0x82f94350 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f94320 - - -script/script.c:294: append command - - -script/lexer.c:322: token 267 text [}] - - -script/script.c:50: malloc 0x82f93b70 - - -script/script.c:50: malloc 0x82f92d10 - - -script/script.c:50: malloc 0x82f92ac0 - - -script/script.c:50: malloc 0x82f93110 - - -script/script.c:50: malloc 0x82f92ed0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f92e70 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f92e40 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f92e10 - - -script/script.c:50: malloc 0x82f92df0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82f942f0 - - -script/script.c:50: malloc 0x82f942d0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f942b0 - - -script/script.c:65: free 0x82f942b0 - - -script/script.c:65: free 0x82f942d0 - - -script/script.c:65: free 0x82f942f0 - - -script/script.c:65: free 0x82f92df0 - - -script/script.c:65: free 0x82f92e10 - - -script/script.c:65: free 0x82f92e40 - - -script/script.c:65: free 0x82f92e70 - - -script/script.c:65: free 0x82f92ed0 - - -script/script.c:65: free 0x82f93110 - - -script/script.c:65: free 0x82f92ac0 - - -script/script.c:65: free 0x82fa0260 - - -script/script.c:65: free 0x82fa0280 - - -script/script.c:65: free 0x82fa02b0 - - -script/script.c:65: free 0x82fa02e0 - - -script/script.c:65: free 0x82fdc350 - - -script/script.c:65: free 0x82fa0300 - - -script/script.c:65: free 0x82fa0360 - - -script/script.c:65: free 0x82fa0390 - - -script/script.c:65: free 0x82fa03b0 - - -script/script.c:65: free 0x82fdc590 - - -script/script.c:65: free 0x82fdc5c0 - - -script/script.c:65: free 0x82fdc670 - - -script/script.c:65: free 0x82fdc480 - - -script/script.c:65: free 0x82fdc4b0 - - -script/script.c:65: free 0x82fdc5e0 - - -script/script.c:65: free 0x82fdc600 - - -script/script.c:65: free 0x82fdc6a0 - - -script/script.c:65: free 0x82fdc6d0 - - -script/script.c:65: free 0x82fdc6f0 - - -script/script.c:65: free 0x82fdc7e0 - - -script/script.c:65: free 0x82fdc810 - - -script/script.c:65: free 0x82fdc830 - - -script/script.c:65: free 0x82fdc860 - - -script/script.c:65: free 0x82fdc890 - - -script/script.c:65: free 0x82fdc8b0 - - -script/script.c:65: free 0x82fdc8e0 - - -script/script.c:65: free 0x82fdc910 - - -script/script.c:65: free 0x82fdc930 - - -script/script.c:65: free 0x82fdc960 - - -script/script.c:65: free 0x82fdca30 - - -script/script.c:65: free 0x82fdca60 - - -script/script.c:65: free 0x82fdca90 - - -script/script.c:65: free 0x82fdcac0 - - -script/script.c:65: free 0x82fdcae0 - - -script/script.c:65: free 0x82fdf350 - - -script/script.c:65: free 0x82fdf380 - - -script/script.c:65: free 0x82fdf3a0 - - -script/script.c:65: free 0x82fdf3d0 - - -script/script.c:65: free 0x82fdf400 - - -script/script.c:65: free 0x82fdf420 - - -script/script.c:65: free 0x82fdf450 - - -script/script.c:65: free 0x82fdf480 - - -script/script.c:65: free 0x82fe1f50 - - -script/script.c:65: free 0x82feed40 - - -script/script.c:65: free 0x82feed90 - - -script/script.c:65: free 0x82fe1e30 - - -script/script.c:65: free 0x82fe1e50 - - -script/script.c:65: free 0x82fe2160 - - -script/script.c:65: free 0x82fe2190 - - -script/script.c:65: free 0x82fe21c0 - - -script/script.c:65: free 0x82f92d10 - - -script/script.c:65: free 0x82f93b70 - - -script/script.c:65: free 0x82f94320 - - -script/script.c:65: free 0x82f94350 - - -script/script.c:65: free 0x82f94370 - - -script/script.c:65: free 0x82f943a0 - - -script/script.c:65: free 0x82f943d0 - - -script/script.c:65: free 0x82f94420 - - -script/script.c:65: free 0x82f93140 - - -script/script.c:65: free 0x82f93170 - - -script/script.c:65: free 0x82f931a0 - - -script/script.c:65: free 0x82f932b0 - - -script/script.c:65: free 0x82f932e0 - - -script/script.c:65: free 0x82f93300 - - -script/script.c:65: free 0x82f93330 - - -script/script.c:65: free 0x82f93360 - - -script/script.c:65: free 0x82f93490 - - -script/script.c:65: free 0x82f93380 - - -script/script.c:65: free 0x82f933c0 - - -script/script.c:65: free 0x82f933f0 - - -script/script.c:65: free 0x82f93410 - - -script/script.c:65: free 0x82f934c0 - - -script/script.c:65: free 0x82f934f0 - - -script/script.c:65: free 0x82f93510 - - -script/script.c:65: free 0x82f93610 - - -script/script.c:65: free 0x82f93640 - - -script/script.c:65: free 0x82f93660 - - -script/script.c:65: free 0x82f93690 - - -script/script.c:65: free 0x82f936c0 - - -script/script.c:65: free 0x82f936f0 - - -script/script.c:65: free 0x82f93720 - - -script/script.c:65: free 0x82f93750 - - -script/script.c:65: free 0x82f93780 - - -script/script.c:65: free 0x82f937b0 - - -script/script.c:65: free 0x82f937e0 - - -script/script.c:65: free 0x82f93810 - - -script/script.c:65: free 0x82f93840 - - -script/script.c:65: free 0x82f93870 - - -script/script.c:65: free 0x82f93890 - - -script/script.c:65: free 0x82f938c0 - - -script/script.c:65: free 0x82f938f0 - - -script/script.c:65: free 0x82f93910 - - -script/script.c:65: free 0x82f93940 - - -script/script.c:65: free 0x82f93970 - - -script/script.c:65: free 0x82f939a0 - - -script/script.c:65: free 0x82f939d0 - - -script/script.c:65: free 0x82f93a00 - - -script/script.c:65: free 0x82f93a40 - - -script/script.c:65: free 0x82f93ba0 - - -script/script.c:65: free 0x82f93bd0 - - -script/script.c:65: free 0x82f93bf0 - - -script/script.c:65: free 0x82f93c20 - - -script/script.c:65: free 0x82f93c50 - - -script/script.c:65: free 0x82f93c70 - - -script/script.c:65: free 0x82f93ca0 - - -script/script.c:65: free 0x82f93cd0 - - -script/script.c:65: free 0x82f93e00 - - -script/script.c:65: free 0x82f93cf0 - - -script/script.c:65: free 0x82f93d30 - - -script/script.c:65: free 0x82f93d60 - - -script/script.c:65: free 0x82f93d80 - - -script/script.c:65: free 0x82f93e30 - - -script/script.c:65: free 0x82f93e60 - - -script/script.c:65: free 0x82f93e80 - - -script/script.c:65: free 0x82f93f80 - - -script/script.c:65: free 0x82f93fa0 - - -script/script.c:65: free 0x82f93fd0 - - -script/script.c:65: free 0x82f94000 - - -script/script.c:65: free 0x82f94020 - - -script/script.c:65: free 0x82f94100 - - -script/script.c:65: free 0x82f94120 - - -script/script.c:65: free 0x82f94150 - - -script/script.c:65: free 0x82f94170 - - -script/script.c:65: free 0x82f941a0 - - -script/script.c:65: free 0x82f941d0 - - -script/script.c:65: free 0x82f94210 - - -script/script.c:65: free 0x82fa01d0 - - -script/script.c:65: free 0x82fa0200 - - -script/script.c:65: free 0x82fa0230 - - -script/script.c:65: free 0x82f94450 - - -script/script.c:65: free 0x82f94480 - - -script/script.c:65: free 0x82f944b0 - - -script/script.c:65: free 0x82f944e0 - - -script/script.c:65: free 0x82f94510 - - -script/script.c:65: free 0x82f94540 - - -script/script.c:65: free 0x82f94680 - - -script/script.c:65: free 0x82f946b0 - - -script/script.c:65: free 0x82f946d0 - - -script/script.c:65: free 0x82f94700 - - -script/script.c:65: free 0x82f94720 - - -script/script.c:65: free 0x82f94750 - - -script/script.c:65: free 0x82f94770 - - -script/script.c:65: free 0x82f9ebb0 - - -script/script.c:65: free 0x82f9ebd0 - - -script/script.c:65: free 0x82f9ec00 - - -script/script.c:65: free 0x82f9ec20 - - -script/script.c:65: free 0x82f9ec50 - - -script/script.c:65: free 0x82f9ec80 - - -script/script.c:65: free 0x82f9ecc0 - - -script/script.c:65: free 0x82f9ecf0 - - -script/script.c:65: free 0x82f9ed20 - - -script/script.c:65: free 0x82f9ed50 - - -script/script.c:65: free 0x82f9ed80 - - -script/script.c:65: free 0x82f9edb0 - - -script/script.c:65: free 0x82f9ede0 - - -script/script.c:65: free 0x82f9ee10 - - -script/script.c:65: free 0x82f9ee40 - - -script/script.c:65: free 0x82f9ee70 - - -script/script.c:65: free 0x82f9efb0 - - -script/script.c:65: free 0x82f9efe0 - - -script/script.c:65: free 0x82f9f000 - - -script/script.c:65: free 0x82f9f030 - - -script/script.c:65: free 0x82f9f050 - - -script/script.c:65: free 0x82f9f080 - - -script/script.c:65: free 0x82f9f0a0 - - -script/script.c:65: free 0x82f9f0d0 - - -script/script.c:65: free 0x82f9f0f0 - - -script/script.c:65: free 0x82f9f120 - - -script/script.c:65: free 0x82f9f140 - - -script/script.c:65: free 0x82f9f170 - - -script/script.c:65: free 0x82f9f1a0 - - -script/script.c:65: free 0x82f9f1c0 - - -script/script.c:65: free 0x82f9f1f0 - - -script/script.c:65: free 0x82f9f220 - - -script/script.c:65: free 0x82f9f240 - - -script/script.c:65: free 0x82f9f270 - - -script/script.c:65: free 0x82f9f2a0 - - -script/script.c:65: free 0x82f9f2c0 - - -script/script.c:65: free 0x82f9f2f0 - - -script/script.c:65: free 0x82f9f320 - - -script/script.c:65: free 0x82f9f440 - - -script/script.c:65: free 0x82f9f340 - - -script/script.c:65: free 0x82f9f380 - - -script/script.c:65: free 0x82f9f3b0 - - -script/script.c:65: free 0x82f9f3d0 - - -script/script.c:65: free 0x82f9f470 - - -script/script.c:65: free 0x82f9f4a0 - - -script/script.c:65: free 0x82f9f4c0 - - -script/script.c:65: free 0x82f9f4f0 - - -script/script.c:65: free 0x82f9f510 - - -script/script.c:65: free 0x82f9f620 - - -script/script.c:65: free 0x82f9f650 - - -script/script.c:65: free 0x82f9f670 - - -script/script.c:65: free 0x82f9f6a0 - - -script/script.c:65: free 0x82f9f6d0 - - -script/script.c:65: free 0x82f9f6f0 - - -script/script.c:65: free 0x82f9f720 - - -script/script.c:65: free 0x82f9f750 - - -script/script.c:65: free 0x82f9f770 - - -script/script.c:65: free 0x82f9f850 - - -script/script.c:65: free 0x82f9f880 - - -script/script.c:65: free 0x82f9f8a0 - - -script/script.c:65: free 0x82f9f8d0 - - -script/script.c:65: free 0x82f9f900 - - -script/script.c:65: free 0x82f9f930 - - -script/script.c:65: free 0x82f9f960 - - -script/script.c:65: free 0x82f9f990 - - -script/script.c:65: free 0x82f9f9b0 - - -script/script.c:65: free 0x82f9faa0 - - -script/script.c:65: free 0x82f9fad0 - - -script/script.c:65: free 0x82f9faf0 - - -script/script.c:65: free 0x82f9fb20 - - -script/script.c:65: free 0x82f9fb50 - - -script/script.c:65: free 0x82f9fb70 - - -script/script.c:65: free 0x82f9fba0 - - -script/script.c:65: free 0x82f9fbd0 - - -script/script.c:65: free 0x82f9fbf0 - - -script/script.c:65: free 0x82f9fcd0 - - -script/script.c:65: free 0x82f9fd00 - - -script/script.c:65: free 0x82f9fd20 - - -script/script.c:65: free 0x82f9fd50 - - -script/script.c:65: free 0x82f9fd80 - - -script/script.c:65: free 0x82f9fdb0 - - -script/script.c:65: free 0x82f9fde0 - - -script/script.c:65: free 0x82f9fe10 - - -script/script.c:65: free 0x82f9fe30 - - -script/script.c:65: free 0x82f9ff20 - - -script/script.c:65: free 0x82f9ff40 - - -script/script.c:65: free 0x82f9ff70 - - -script/script.c:65: free 0x82f9ff90 - - -script/script.c:65: free 0x82f9ffc0 - - -script/script.c:65: free 0x82f9fff0 - - -script/script.c:65: free 0x82fa0020 - - -script/script.c:65: free 0x82fa0100 - - -script/script.c:65: free 0x82fa0120 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe1fc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fc0 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe1fc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fc0 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe1fc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fc0 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe1fc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fc0 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe2160 - - -script/script.c:50: malloc 0x82fe1fc0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fc0 - - -script/script.c:65: free 0x82fe2160 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fe1e40 - - -script/script.c:50: malloc 0x82fe1e20 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1df0 - - -script/lexer.c:322: token 289 text [-f] - - -script/script.c:50: malloc 0x82fdf470 - - -script/script.c:50: malloc 0x82fdf450 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf420 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdf380 - - -script/script.c:50: malloc 0x82fdf360 - - -script/lexer.c:322: token 289 text [config_directory] - - -script/script.c:50: malloc 0x82fdcae0 - - -script/script.c:50: malloc 0x82fdcab0 - - -script/lexer.c:322: token 289 text [/custom.cfg] - - -script/script.c:50: malloc 0x82fdca80 - - -script/script.c:50: malloc 0x82fdca50 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc960 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fdc930 - - -script/script.c:50: malloc 0x82fdc910 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc8e0 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fdc8b0 - - -script/script.c:50: malloc 0x82fdc890 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdc860 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdc840 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fdc810 - - -script/script.c:50: malloc 0x82fdc7f0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdc7c0 - - -script/script.c:50: malloc 0x82fdc700 - - -script/lexer.c:322: token 288 text [source] - - -script/script.c:50: malloc 0x82fdc600 - - -script/script.c:50: malloc 0x82fdc5e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc5b0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdc4b0 - - -script/script.c:50: malloc 0x82fdc490 - - -script/lexer.c:322: token 289 text [config_directory] - - -script/script.c:50: malloc 0x82fdc460 - - -script/script.c:50: malloc 0x82fdc430 - - -script/lexer.c:322: token 289 text [/custom.cfg] - - -script/script.c:50: malloc 0x82fa03b0 - - -script/script.c:50: malloc 0x82fa0380 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa0350 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fa0320 - - -script/script.c:50: malloc 0x82fa0300 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fa02d0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fa02b0 - - -script/lexer.c:322: token 276 text [elif] - - -script/script.c:50: malloc 0x82fa0280 - - -script/script.c:50: malloc 0x82fa0260 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fa0230 - - -script/script.c:50: malloc 0x82fa0210 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fa0100 - - -script/lexer.c:322: token 289 text [-z] - - -script/script.c:50: malloc 0x82fa0020 - - -script/script.c:50: malloc 0x82fa0000 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9ffd0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9ff30 - - -script/script.c:50: malloc 0x82f9ff10 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9fe30 - - -script/script.c:50: malloc 0x82f9fe10 - - -script/lexer.c:322: token 289 text [config_directory] - - -script/script.c:50: malloc 0x82f9fde0 - - -script/script.c:50: malloc 0x82f9fdb0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9fd80 - - -script/script.c:50: malloc 0x82f9fd60 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9ffa0 - - -script/script.c:50: malloc 0x82f9fd40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fd10 - - -script/lexer.c:322: token 289 text [-a] - - -script/script.c:50: malloc 0x82f9fce0 - - -script/script.c:50: malloc 0x82f9fcc0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fbf0 - - -script/lexer.c:322: token 289 text [-f] - - -script/script.c:50: malloc 0x82f9fbc0 - - -script/script.c:50: malloc 0x82f9fba0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9fb70 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9fad0 - - -script/script.c:50: malloc 0x82f9fab0 - - -script/lexer.c:322: token 289 text [prefix] - - -script/script.c:50: malloc 0x82f9f9b0 - - -script/script.c:50: malloc 0x82f9f990 - - -script/lexer.c:322: token 289 text [/custom.cfg] - - -script/script.c:50: malloc 0x82f9f960 - - -script/script.c:50: malloc 0x82f9f930 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f900 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82f9f8d0 - - -script/script.c:50: malloc 0x82f9f8b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f880 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82f9f850 - - -script/script.c:50: malloc 0x82f9f780 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9f750 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9f730 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82f9f700 - - -script/script.c:50: malloc 0x82f9f6e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f6b0 - - -script/script.c:50: malloc 0x82f9f690 - - -script/lexer.c:322: token 288 text [source] - - -script/script.c:50: malloc 0x82f9f510 - - -script/script.c:50: malloc 0x82f9f4f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f4c0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82f9f420 - - -script/script.c:50: malloc 0x82f9f400 - - -script/lexer.c:322: token 289 text [prefix] - - -script/script.c:50: malloc 0x82f9f3d0 - - -script/script.c:50: malloc 0x82f9f3b0 - - -script/lexer.c:322: token 289 text [/custom.cfg] - - -script/script.c:50: malloc 0x82f9f380 - - -script/script.c:50: malloc 0x82f9f350 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82f9f320 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82f9f2f0 - - -script/script.c:50: malloc 0x82f9f2d0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82f9f2a0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9f280 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f250 - - -script/script.c:50: malloc 0x82f9f230 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82f9f150 - - -script/script.c:50: malloc 0x82f9f130 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82f9f100 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82f9f0d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82f9f0a0 - - -script/script.c:50: malloc 0x82f9f080 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82f9f200 - - -script/script.c:50: malloc 0x82f9f1e0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82f9f060 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2048 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2816 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=18176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605120 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34621504 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34607104 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605184 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605248 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=0 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82f9f060 - - -script/script.c:65: free 0x82f9f1e0 - - -script/script.c:65: free 0x82f9f200 - - -script/script.c:65: free 0x82f9f080 - - -script/script.c:65: free 0x82f9f0a0 - - -script/script.c:65: free 0x82f9f0d0 - - -script/script.c:65: free 0x82f9f100 - - -script/script.c:65: free 0x82f9f130 - - -script/script.c:65: free 0x82f9f150 - - -script/script.c:65: free 0x82f9f230 - - -script/script.c:65: free 0x82f9f250 - - -script/script.c:65: free 0x82f9f280 - - -script/script.c:65: free 0x82f9f2a0 - - -script/script.c:65: free 0x82f9f2d0 - - -script/script.c:65: free 0x82f9f2f0 - - -script/script.c:65: free 0x82f9f320 - - -script/script.c:65: free 0x82f9f350 - - -script/script.c:65: free 0x82f9f380 - - -script/script.c:65: free 0x82f9f3b0 - - -script/script.c:65: free 0x82f9f3d0 - - -script/script.c:65: free 0x82f9f400 - - -script/script.c:65: free 0x82f9f420 - - -script/script.c:65: free 0x82f9f4c0 - - -script/script.c:65: free 0x82f9f4f0 - - -script/script.c:65: free 0x82f9f510 - - -script/script.c:65: free 0x82f9f690 - - -script/script.c:65: free 0x82f9f6b0 - - -script/script.c:65: free 0x82f9f6e0 - - -script/script.c:65: free 0x82f9f700 - - -script/script.c:65: free 0x82f9f730 - - -script/script.c:65: free 0x82f9f750 - - -script/script.c:65: free 0x82f9f780 - - -script/script.c:65: free 0x82f9f850 - - -script/script.c:65: free 0x82f9f880 - - -script/script.c:65: free 0x82f9f8b0 - - -script/script.c:65: free 0x82f9f8d0 - - -script/script.c:65: free 0x82f9f900 - - -script/script.c:65: free 0x82f9f930 - - -script/script.c:65: free 0x82f9f960 - - -script/script.c:65: free 0x82f9f990 - - -script/script.c:65: free 0x82f9f9b0 - - -script/script.c:65: free 0x82f9fab0 - - -script/script.c:65: free 0x82f9fad0 - - -script/script.c:65: free 0x82f9fb70 - - -script/script.c:65: free 0x82f9fba0 - - -script/script.c:65: free 0x82f9fbc0 - - -script/script.c:65: free 0x82f9fbf0 - - -script/script.c:65: free 0x82f9fcc0 - - -script/script.c:65: free 0x82f9fce0 - - -script/script.c:65: free 0x82f9fd10 - - -script/script.c:65: free 0x82f9fd40 - - -script/script.c:65: free 0x82f9ffa0 - - -script/script.c:65: free 0x82f9fd60 - - -script/script.c:65: free 0x82f9fd80 - - -script/script.c:65: free 0x82f9fdb0 - - -script/script.c:65: free 0x82f9fde0 - - -script/script.c:65: free 0x82f9fe10 - - -script/script.c:65: free 0x82f9fe30 - - -script/script.c:65: free 0x82f9ff10 - - -script/script.c:65: free 0x82f9ff30 - - -script/script.c:65: free 0x82f9ffd0 - - -script/script.c:65: free 0x82fa0000 - - -script/script.c:65: free 0x82fa0020 - - -script/script.c:65: free 0x82fa0100 - - -script/script.c:65: free 0x82fa0210 - - -script/script.c:65: free 0x82fa0230 - - -script/script.c:65: free 0x82fa0260 - - -script/script.c:65: free 0x82fa0280 - - -script/script.c:65: free 0x82fa02b0 - - -script/script.c:65: free 0x82fa02d0 - - -script/script.c:65: free 0x82fa0300 - - -script/script.c:65: free 0x82fa0320 - - -script/script.c:65: free 0x82fa0350 - - -script/script.c:65: free 0x82fa0380 - - -script/script.c:65: free 0x82fa03b0 - - -script/script.c:65: free 0x82fdc430 - - -script/script.c:65: free 0x82fdc460 - - -script/script.c:65: free 0x82fdc490 - - -script/script.c:65: free 0x82fdc4b0 - - -script/script.c:65: free 0x82fdc5b0 - - -script/script.c:65: free 0x82fdc5e0 - - -script/script.c:65: free 0x82fdc600 - - -script/script.c:65: free 0x82fdc700 - - -script/script.c:65: free 0x82fdc7c0 - - -script/script.c:65: free 0x82fdc7f0 - - -script/script.c:65: free 0x82fdc810 - - -script/script.c:65: free 0x82fdc840 - - -script/script.c:65: free 0x82fdc860 - - -script/script.c:65: free 0x82fdc890 - - -script/script.c:65: free 0x82fdc8b0 - - -script/script.c:65: free 0x82fdc8e0 - - -script/script.c:65: free 0x82fdc910 - - -script/script.c:65: free 0x82fdc930 - - -script/script.c:65: free 0x82fdc960 - - -script/script.c:65: free 0x82fdca50 - - -script/script.c:65: free 0x82fdca80 - - -script/script.c:65: free 0x82fdcab0 - - -script/script.c:65: free 0x82fdcae0 - - -script/script.c:65: free 0x82fdf360 - - -script/script.c:65: free 0x82fdf380 - - -script/script.c:65: free 0x82fdf420 - - -script/script.c:65: free 0x82fdf450 - - -script/script.c:65: free 0x82fdf470 - - -script/script.c:65: free 0x82fe1df0 - - -script/script.c:65: free 0x82fe1e20 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -[?25l[m[H[J[1;1H[2;27HGNU GRUB version 2.02~beta2 - - - -[m[4;2H+----------------------------------------------------------------------------+[5;2H|[5;79H|[6;2H|[6;79H|[7;2H|[7;79H|[8;2H|[8;79H|[9;2H|[9;79H|[10;2H|[10;79H|[11;2H|[11;79H|[12;2H|[12;79H|[13;2H|[13;79H|[14;2H|[14;79H|[15;2H|[15;79H|[16;2H|[16;79H|[17;2H+----------------------------------------------------------------------------+[m[18;2H[19;2H[m Use the ^ and v keys to select which entry is highlighted. - - - Press enter to boot the selected OS, `e' to edit the commands - - - before booting or `c' for a command-line. [5;80H [7m[5;3H*Parabola GNU/Linux-libre, linux-libre kernel [m[5;78H[m[m[6;3H [m[6;78H[m[m[7;3H [m[7;78H[m[m[8;3H [m[8;78H[m[m[9;3H [m[9;78H[m[m[10;3H [m[10;78H[m[m[11;3H [m[11;78H[m[m[12;3H [m[12;78H[m[m[13;3H [m[13;78H[m[m[14;3H [m[14;78H[m[m[15;3H [m[15;78H[m[m[16;3H [m[16;78H[m[16;80H [5;78H[22;1H The highlighted entry will be executed automatically in 1000s. [5;78H[22;1H The highlighted entry will be executed automatically in 999s. [5;78H[22;1H [23;1H [5;78H[?25h[H[J[1;1H - - -script/lexer.c:322: token 288 text [setparams] - - -script/script.c:50: malloc 0x82fe1f00 - - -script/script.c:50: malloc 0x82fe1ed0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1ea0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdf3f0 - - -script/script.c:50: malloc 0x82fdf3d0 - - -script/lexer.c:322: token 289 text [Parabola GNU/Linux-libre, linux-libre - - -kernel] - - -script/script.c:50: malloc 0x82fef270 - - -script/script.c:50: malloc 0x82fef220 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fe1e30 - - -script/script.c:50: malloc 0x82fe1e10 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdcae0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdcab0 - - -script/script.c:50: malloc 0x82fdca90 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdca60 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1fb0 - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdc970 - - -script/script.c:65: free 0x82fdc970 - - -script/script.c:65: free 0x82fe1f90 - - -script/script.c:65: free 0x82fe1fb0 - - -script/script.c:65: free 0x82fdca60 - - -script/script.c:65: free 0x82fdca90 - - -script/script.c:65: free 0x82fdcab0 - - -script/script.c:65: free 0x82fdcae0 - - -script/script.c:65: free 0x82fe1e10 - - -script/script.c:65: free 0x82fe1e30 - - -script/script.c:65: free 0x82fef220 - - -script/script.c:65: free 0x82fef270 - - -script/script.c:65: free 0x82fdf3d0 - - -script/script.c:65: free 0x82fdf3f0 - - -script/script.c:65: free 0x82fe1ea0 - - -script/script.c:65: free 0x82fe1ed0 - - -script/script.c:65: free 0x82fe1f00 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1f40 - - -script/script.c:50: malloc 0x82fe1f20 - - -script/script.c:65: free 0x82fe1f20 - - -script/script.c:65: free 0x82fe1f40 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/lexer.c:322: token 288 text [load_video] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f60 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1f30 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe1f00 - - -script/script.c:50: malloc 0x82fe1ee0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe1eb0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1e80 - - -script/script.c:50: malloc 0x82fe1e60 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e60 - - -script/script.c:65: free 0x82fe1e80 - - -script/script.c:65: free 0x82fe1eb0 - - -script/script.c:65: free 0x82fe1ee0 - - -script/script.c:65: free 0x82fe1f00 - - -script/script.c:65: free 0x82fe1f30 - - -script/script.c:65: free 0x82fe1f60 - - -script/script.c:65: free 0x82fe1f90 - - -script/lexer.c:322: token 288 text [set] - - -script/script.c:50: malloc 0x82fe1f50 - - -script/script.c:50: malloc 0x82fe1f30 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1f00 - - -script/lexer.c:322: token 289 text [gfxpayload=keep] - - -script/script.c:50: malloc 0x82fdf470 - - -script/script.c:50: malloc 0x82fdf440 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf410 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdf3e0 - - -script/script.c:50: malloc 0x82fdf3c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdf390 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1fb0 - - -script/script.c:50: malloc 0x82fe1ea0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdf370 - - -script/script.c:65: free 0x82fdf370 - - -script/script.c:65: free 0x82fe1ea0 - - -script/script.c:65: free 0x82fe1fb0 - - -script/script.c:65: free 0x82fdf390 - - -script/script.c:65: free 0x82fdf3c0 - - -script/script.c:65: free 0x82fdf3e0 - - -script/script.c:65: free 0x82fdf410 - - -script/script.c:65: free 0x82fdf440 - - -script/script.c:65: free 0x82fdf470 - - -script/script.c:65: free 0x82fe1f00 - - -script/script.c:65: free 0x82fe1f30 - - -script/script.c:65: free 0x82fe1f50 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1f40 - - -script/lexer.c:322: token 288 text [gzio] - - -script/script.c:50: malloc 0x82fe1f10 - - -script/script.c:50: malloc 0x82fe1ef0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1ec0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe1e90 - - -script/script.c:50: malloc 0x82fe1e70 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe1e40 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1e10 - - -script/script.c:50: malloc 0x82fe1df0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdf480 - - -script/script.c:65: free 0x82fdf480 - - -script/script.c:65: free 0x82fe1df0 - - -script/script.c:65: free 0x82fe1e10 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e70 - - -script/script.c:65: free 0x82fe1e90 - - -script/script.c:65: free 0x82fe1ec0 - - -script/script.c:65: free 0x82fe1ef0 - - -script/script.c:65: free 0x82fe1f10 - - -script/script.c:65: free 0x82fe1f40 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe1f50 - - -script/script.c:50: malloc 0x82fe1f30 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1f00 - - -script/lexer.c:322: token 288 text [part_msdos] - - -script/script.c:50: malloc 0x82fe1ed0 - - -script/script.c:50: malloc 0x82fe1ea0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1e70 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe1e40 - - -script/script.c:50: malloc 0x82fe1e20 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe1df0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fdf470 - - -script/script.c:50: malloc 0x82fdf450 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdf430 - - -script/script.c:65: free 0x82fdf430 - - -script/script.c:65: free 0x82fdf450 - - -script/script.c:65: free 0x82fdf470 - - -script/script.c:65: free 0x82fe1df0 - - -script/script.c:65: free 0x82fe1e20 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e70 - - -script/script.c:65: free 0x82fe1ea0 - - -script/script.c:65: free 0x82fe1ed0 - - -script/script.c:65: free 0x82fe1f00 - - -script/script.c:65: free 0x82fe1f30 - - -script/script.c:65: free 0x82fe1f50 - - -script/lexer.c:322: token 288 text [insmod] - - -script/script.c:50: malloc 0x82fe1f90 - - -script/script.c:50: malloc 0x82fe1f70 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1f40 - - -script/lexer.c:322: token 288 text [ext2] - - -script/script.c:50: malloc 0x82fe1f10 - - -script/script.c:50: malloc 0x82fe1ef0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fe1ec0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fe1e90 - - -script/script.c:50: malloc 0x82fe1e70 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fe1e40 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fe1e10 - - -script/script.c:50: malloc 0x82fe1df0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdf480 - - -script/script.c:65: free 0x82fdf480 - - -script/script.c:65: free 0x82fe1df0 - - -script/script.c:65: free 0x82fe1e10 - - -script/script.c:65: free 0x82fe1e40 - - -script/script.c:65: free 0x82fe1e70 - - -script/script.c:65: free 0x82fe1e90 - - -script/script.c:65: free 0x82fe1ec0 - - -script/script.c:65: free 0x82fe1ef0 - - -script/script.c:65: free 0x82fe1f10 - - -script/script.c:65: free 0x82fe1f40 - - -script/script.c:65: free 0x82fe1f70 - - -script/script.c:65: free 0x82fe1f90 - - -script/lexer.c:322: token 281 text [if] - - -script/script.c:50: malloc 0x82fe1f00 - - -script/script.c:50: malloc 0x82fe1ee0 - - -script/lexer.c:322: token 289 text [[] - - -script/script.c:50: malloc 0x82fdf470 - - -script/script.c:50: malloc 0x82fdf450 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdf420 - - -script/lexer.c:322: token 289 text [x] - - -script/script.c:50: malloc 0x82fdf380 - - -script/script.c:50: malloc 0x82fdf360 - - -script/lexer.c:322: token 289 text [feature_platform_search_hint] - - -script/script.c:50: malloc 0x82fdcae0 - - -script/script.c:50: malloc 0x82fdcaa0 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fdf3f0 - - -script/script.c:50: malloc 0x82fdf340 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdca70 - - -script/lexer.c:322: token 289 text [=] - - -script/script.c:50: malloc 0x82fdca40 - - -script/script.c:50: malloc 0x82fdc970 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc940 - - -script/lexer.c:322: token 288 text [xy] - - -script/script.c:50: malloc 0x82fdc910 - - -script/script.c:50: malloc 0x82fdc8f0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc8c0 - - -script/lexer.c:322: token 289 text []] - - -script/script.c:50: malloc 0x82fdc890 - - -script/script.c:50: malloc 0x82fdc870 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc840 - - -script/lexer.c:322: token 265 text [;] - - -script/script.c:50: malloc 0x82fdc810 - - -script/script.c:50: malloc 0x82fdc7f0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdc6f0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdc610 - - -script/lexer.c:322: token 284 text [then] - - -script/script.c:50: malloc 0x82fdc5e0 - - -script/script.c:50: malloc 0x82fdc5c0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdc590 - - -script/script.c:50: malloc 0x82fdc4c0 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82fdc490 - - -script/script.c:50: malloc 0x82fdc470 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc440 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82fdc2a0 - - -script/script.c:50: malloc 0x82fdc270 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc240 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82fdc210 - - -script/script.c:50: malloc 0x82fdc1e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc1b0 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82fdc180 - - -script/script.c:50: malloc 0x82fdc150 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdc120 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82fdc010 - - -script/script.c:50: malloc 0x82fdbfd0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdbfa0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdbf70 - - -script/script.c:50: malloc 0x82fdbf50 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdbf20 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdbf00 - - -script/lexer.c:322: token 277 text [else] - - -script/script.c:50: malloc 0x82fdbe50 - - -script/script.c:50: malloc 0x82fdbe30 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdbe00 - - -script/script.c:50: malloc 0x82fdbde0 - - -script/lexer.c:322: token 288 text [search] - - -script/script.c:50: malloc 0x82fdbdb0 - - -script/script.c:50: malloc 0x82fdbd90 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdbd60 - - -script/lexer.c:322: token 289 text [--no-floppy] - - -script/script.c:50: malloc 0x82fdbc30 - - -script/script.c:50: malloc 0x82fdbc00 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdbbd0 - - -script/lexer.c:322: token 289 text [--fs-uuid] - - -script/script.c:50: malloc 0x82fdbba0 - - -script/script.c:50: malloc 0x82fdbb70 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdbb40 - - -script/lexer.c:322: token 289 text [--set=root] - - -script/script.c:50: malloc 0x82fdbb10 - - -script/script.c:50: malloc 0x82fdbae0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdbab0 - - -script/lexer.c:322: token 289 text [5f96769c-05a0-4808-9e3a-eae949415a9d] - - -script/script.c:50: malloc 0x82fdba80 - - -script/script.c:50: malloc 0x82fdba40 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fdba10 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdb9e0 - - -script/script.c:50: malloc 0x82fdb9c0 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fdb990 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdb970 - - -script/lexer.c:322: token 279 text [fi] - - -script/script.c:50: malloc 0x82fdb8c0 - - -script/script.c:50: malloc 0x82fdb8a0 - - -script/script.c:223: cmdif - - -script/script.c:50: malloc 0x82fdb870 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fdb840 - - -script/script.c:50: malloc 0x82fdb820 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fdb940 - - -script/script.c:50: malloc 0x82fdb800 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fdb7e0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2048 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2816 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=18176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=2176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605120 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34621504 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=40276992 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=40277056 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fda820, size 0xf6c - - -kern/dl.c:620: relocating to 0x82feeaf0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=0 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=40277504 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fe3490, size 0xe78 - - -kern/dl.c:620: relocating to 0x82fe8180 - - -kern/arm/dl.c:102: trampoline size c - - -kern/dl.c:553: flushing 0xc75 bytes at 0x82fe2800 - - -kern/dl.c:643: module name: search_fs_file - - -kern/dl.c:644: init function: 0x82fe2d48 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=40277568 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fe34c0, size 0xe50 - - -kern/dl.c:620: relocating to 0x82fe5a20 - - -kern/arm/dl.c:102: trampoline size c - - -kern/dl.c:553: flushing 0xc50 bytes at 0x82fd9bc0 - - -kern/dl.c:643: module name: search_label - - -kern/dl.c:644: init function: 0x82fda138 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0xce3 bytes at 0x82fe3620 - - -kern/dl.c:643: module name: search - - -kern/dl.c:644: init function: 0x82fe3820 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82fdb7e0 - - -script/script.c:65: free 0x82fdb800 - - -script/script.c:65: free 0x82fdb940 - - -script/script.c:65: free 0x82fdb820 - - -script/script.c:65: free 0x82fdb840 - - -script/script.c:65: free 0x82fdb870 - - -script/script.c:65: free 0x82fdb8a0 - - -script/script.c:65: free 0x82fdb8c0 - - -script/script.c:65: free 0x82fdb970 - - -script/script.c:65: free 0x82fdb990 - - -script/script.c:65: free 0x82fdb9c0 - - -script/script.c:65: free 0x82fdb9e0 - - -script/script.c:65: free 0x82fdba10 - - -script/script.c:65: free 0x82fdba40 - - -script/script.c:65: free 0x82fdba80 - - -script/script.c:65: free 0x82fdbab0 - - -script/script.c:65: free 0x82fdbae0 - - -script/script.c:65: free 0x82fdbb10 - - -script/script.c:65: free 0x82fdbb40 - - -script/script.c:65: free 0x82fdbb70 - - -script/script.c:65: free 0x82fdbba0 - - -script/script.c:65: free 0x82fdbbd0 - - -script/script.c:65: free 0x82fdbc00 - - -script/script.c:65: free 0x82fdbc30 - - -script/script.c:65: free 0x82fdbd60 - - -script/script.c:65: free 0x82fdbd90 - - -script/script.c:65: free 0x82fdbdb0 - - -script/script.c:65: free 0x82fdbde0 - - -script/script.c:65: free 0x82fdbe00 - - -script/script.c:65: free 0x82fdbe30 - - -script/script.c:65: free 0x82fdbe50 - - -script/script.c:65: free 0x82fdbf00 - - -script/script.c:65: free 0x82fdbf20 - - -script/script.c:65: free 0x82fdbf50 - - -script/script.c:65: free 0x82fdbf70 - - -script/script.c:65: free 0x82fdbfa0 - - -script/script.c:65: free 0x82fdbfd0 - - -script/script.c:65: free 0x82fdc010 - - -script/script.c:65: free 0x82fdc120 - - -script/script.c:65: free 0x82fdc150 - - -script/script.c:65: free 0x82fdc180 - - -script/script.c:65: free 0x82fdc1b0 - - -script/script.c:65: free 0x82fdc1e0 - - -script/script.c:65: free 0x82fdc210 - - -script/script.c:65: free 0x82fdc240 - - -script/script.c:65: free 0x82fdc270 - - -script/script.c:65: free 0x82fdc2a0 - - -script/script.c:65: free 0x82fdc440 - - -script/script.c:65: free 0x82fdc470 - - -script/script.c:65: free 0x82fdc490 - - -script/script.c:65: free 0x82fdc4c0 - - -script/script.c:65: free 0x82fdc590 - - -script/script.c:65: free 0x82fdc5c0 - - -script/script.c:65: free 0x82fdc5e0 - - -script/script.c:65: free 0x82fdc610 - - -script/script.c:65: free 0x82fdc6f0 - - -script/script.c:65: free 0x82fdc7f0 - - -script/script.c:65: free 0x82fdc810 - - -script/script.c:65: free 0x82fdc840 - - -script/script.c:65: free 0x82fdc870 - - -script/script.c:65: free 0x82fdc890 - - -script/script.c:65: free 0x82fdc8c0 - - -script/script.c:65: free 0x82fdc8f0 - - -script/script.c:65: free 0x82fdc910 - - -script/script.c:65: free 0x82fdc940 - - -script/script.c:65: free 0x82fdc970 - - -script/script.c:65: free 0x82fdca40 - - -script/script.c:65: free 0x82fdca70 - - -script/script.c:65: free 0x82fdf340 - - -script/script.c:65: free 0x82fdf3f0 - - -script/script.c:65: free 0x82fdcaa0 - - -script/script.c:65: free 0x82fdcae0 - - -script/script.c:65: free 0x82fdf360 - - -script/script.c:65: free 0x82fdf380 - - -script/script.c:65: free 0x82fdf420 - - -script/script.c:65: free 0x82fdf450 - - -script/script.c:65: free 0x82fdf470 - - -script/script.c:65: free 0x82fe1ee0 - - -script/script.c:65: free 0x82fe1f00 - - -script/lexer.c:322: token 288 text [echo] - - -script/script.c:50: malloc 0x82fd7680 - - -script/script.c:50: malloc 0x82fd7660 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7630 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fd74c0 - - -script/script.c:50: malloc 0x82fd74a0 - - -script/lexer.c:322: token 289 text [Loading linux-libre kernel ...] - - -script/script.c:50: malloc 0x82fd7470 - - -script/script.c:50: malloc 0x82fd7430 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fd75c0 - - -script/script.c:50: malloc 0x82fd7410 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd73e0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fd73b0 - - -script/script.c:50: malloc 0x82fd7390 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fd7360 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fd7760 - - -script/script.c:50: malloc 0x82fd7740 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fd7720 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605184 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34623808 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fdb3a0, size 0x8ac - - -kern/dl.c:620: relocating to 0x82fe5350 - - -kern/arm/dl.c:102: trampoline size 0 - - -kern/dl.c:553: flushing 0x64c bytes at 0x82fdad40 - - -kern/dl.c:643: module name: echo - - -kern/dl.c:644: init function: 0x82fdaf00 - - -Loading linux-libre kernel ... - - -script/script.c:65: free 0x82fd7720 - - -script/script.c:65: free 0x82fd7740 - - -script/script.c:65: free 0x82fd7760 - - -script/script.c:65: free 0x82fd7360 - - -script/script.c:65: free 0x82fd7390 - - -script/script.c:65: free 0x82fd73b0 - - -script/script.c:65: free 0x82fd73e0 - - -script/script.c:65: free 0x82fd7410 - - -script/script.c:65: free 0x82fd75c0 - - -script/script.c:65: free 0x82fd7430 - - -script/script.c:65: free 0x82fd7470 - - -script/script.c:65: free 0x82fd74a0 - - -script/script.c:65: free 0x82fd74c0 - - -script/script.c:65: free 0x82fd7630 - - -script/script.c:65: free 0x82fd7660 - - -script/script.c:65: free 0x82fd7680 - - -script/lexer.c:322: token 288 text [linux] - - -script/script.c:50: malloc 0x82fd7760 - - -script/script.c:50: malloc 0x82fd7740 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd75e0 - - -script/lexer.c:322: token 289 text [/boot/vmlinuz-linux-libre] - - -script/script.c:50: malloc 0x82fd7480 - - -script/script.c:50: malloc 0x82fd7440 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7410 - - -script/lexer.c:322: token 289 text [root=/dev/mmcblk0p1] - - -script/script.c:50: malloc 0x82fd73e0 - - -script/script.c:50: malloc 0x82fd73b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7380 - - -script/lexer.c:322: token 288 text [rw] - - -script/script.c:50: malloc 0x82fd7350 - - -script/script.c:50: malloc 0x82fd7330 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7300 - - -script/lexer.c:322: token 288 text [debug] - - -script/script.c:50: malloc 0x82fd72d0 - - -script/script.c:50: malloc 0x82fd72b0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7280 - - -script/lexer.c:322: token 288 text [ignore_loglevel] - - -script/script.c:50: malloc 0x82fd7250 - - -script/script.c:50: malloc 0x82fd7220 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd71f0 - - -script/lexer.c:322: token 289 text [earlyprintk=serial,keep] - - -script/script.c:50: malloc 0x82fd71c0 - - -script/script.c:50: malloc 0x82fd7190 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd7160 - - -script/lexer.c:322: token 289 text [log_buf_len=16M] - - -script/script.c:50: malloc 0x82fd7130 - - -script/script.c:50: malloc 0x82fd7100 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd70d0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fd70a0 - - -script/script.c:50: malloc 0x82fd7080 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fd7050 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fd7710 - - -script/script.c:50: malloc 0x82fd76f0 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fd76d0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34624064 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fd4a00, size 0x263c - - -kern/dl.c:620: relocating to 0x82fe4cc0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=40277248 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -kern/dl.c:596: module at 0x82fd8850, size 0xfa0 - - -kern/dl.c:620: relocating to 0x82fe46d0 - - -kern/arm/dl.c:102: trampoline size c - - -kern/dl.c:553: flushing 0xdbf bytes at 0x82fd7a80 - - -kern/dl.c:643: module name: fdt - - -kern/dl.c:644: init function: 0x0 - - -kern/arm/dl.c:102: trampoline size 18 - - -kern/dl.c:553: flushing 0x2444 bytes at 0x82fb1330 - - -kern/dl.c:643: module name: linux - - -kern/dl.c:644: init function: 0x82fb1eb0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22528 - - -loader/arm/linux.c:306: Loading Linux to 0x80008000 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22592 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22656 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22720 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22784 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22848 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22912 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22976 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23040 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23104 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23168 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23232 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23296 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23360 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23424 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23488 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23552 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23616 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23680 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23744 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23808 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23872 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=23936 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24000 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24064 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24128 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24192 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24256 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24320 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24384 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24448 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24512 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24576 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24640 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24704 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24768 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24832 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24896 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=24960 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25024 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25088 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25152 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25216 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25280 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25344 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25408 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25472 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25536 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25600 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25664 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25728 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25792 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25856 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25920 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=25984 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26048 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26112 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26176 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26240 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26304 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26368 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26432 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26496 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26560 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26624 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26688 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26752 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26816 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26880 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=26944 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27008 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27072 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27136 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27200 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27264 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27328 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27392 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27456 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27520 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27584 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27648 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27712 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27776 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27840 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27904 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=27968 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28032 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28096 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28160 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28224 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28288 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28352 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28416 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28480 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28544 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28608 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28672 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28736 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28800 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28864 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28928 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=28992 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29056 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29120 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29184 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29248 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29312 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29376 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29440 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29504 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29568 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29632 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29696 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29760 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29824 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29888 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=29952 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30016 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30080 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30144 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30208 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30272 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30336 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30400 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30464 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30528 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30592 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30656 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=30720 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20160 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20224 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20288 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20352 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20416 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20480 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20544 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20608 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20672 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20736 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20800 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20864 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20928 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=20992 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21056 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21120 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21184 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21248 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21312 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21376 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21440 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21504 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21568 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21632 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21696 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21760 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21824 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21888 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=21952 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22016 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, sector=22080 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82fd76d0 - - -script/script.c:65: free 0x82fd76f0 - - -script/script.c:65: free 0x82fd7710 - - -script/script.c:65: free 0x82fd7050 - - -script/script.c:65: free 0x82fd7080 - - -script/script.c:65: free 0x82fd70a0 - - -script/script.c:65: free 0x82fd70d0 - - -script/script.c:65: free 0x82fd7100 - - -script/script.c:65: free 0x82fd7130 - - -script/script.c:65: free 0x82fd7160 - - -script/script.c:65: free 0x82fd7190 - - -script/script.c:65: free 0x82fd71c0 - - -script/script.c:65: free 0x82fd71f0 - - -script/script.c:65: free 0x82fd7220 - - -script/script.c:65: free 0x82fd7250 - - -script/script.c:65: free 0x82fd7280 - - -script/script.c:65: free 0x82fd72b0 - - -script/script.c:65: free 0x82fd72d0 - - -script/script.c:65: free 0x82fd7300 - - -script/script.c:65: free 0x82fd7330 - - -script/script.c:65: free 0x82fd7350 - - -script/script.c:65: free 0x82fd7380 - - -script/script.c:65: free 0x82fd73b0 - - -script/script.c:65: free 0x82fd73e0 - - -script/script.c:65: free 0x82fd7410 - - -script/script.c:65: free 0x82fd7440 - - -script/script.c:65: free 0x82fd7480 - - -script/script.c:65: free 0x82fd75e0 - - -script/script.c:65: free 0x82fd7740 - - -script/script.c:65: free 0x82fd7760 - - -script/lexer.c:322: token 288 text [echo] - - -script/script.c:50: malloc 0x82fd5350 - - -script/script.c:50: malloc 0x82fd5330 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd5300 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fd5190 - - -script/script.c:50: malloc 0x82fd5170 - - -script/lexer.c:322: token 289 text [Loading devices tree file ...] - - -script/script.c:50: malloc 0x82fd5140 - - -script/script.c:50: malloc 0x82fd5100 - - -script/lexer.c:322: token 289 text [] - - -script/script.c:50: malloc 0x82fd5290 - - -script/script.c:50: malloc 0x82fd50e0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd50b0 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fd5080 - - -script/script.c:50: malloc 0x82fd5060 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fd5030 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fd5430 - - -script/script.c:50: malloc 0x82fd5410 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fd53f0 - - -Loading devices tree file ... - - -script/script.c:65: free 0x82fd53f0 - - -script/script.c:65: free 0x82fd5410 - - -script/script.c:65: free 0x82fd5430 - - -script/script.c:65: free 0x82fd5030 - - -script/script.c:65: free 0x82fd5060 - - -script/script.c:65: free 0x82fd5080 - - -script/script.c:65: free 0x82fd50b0 - - -script/script.c:65: free 0x82fd50e0 - - -script/script.c:65: free 0x82fd5290 - - -script/script.c:65: free 0x82fd5100 - - -script/script.c:65: free 0x82fd5140 - - -script/script.c:65: free 0x82fd5170 - - -script/script.c:65: free 0x82fd5190 - - -script/script.c:65: free 0x82fd5300 - - -script/script.c:65: free 0x82fd5330 - - -script/script.c:65: free 0x82fd5350 - - -script/lexer.c:322: token 288 text [devicetree] - - -script/script.c:50: malloc 0x82fd5330 - - -script/script.c:50: malloc 0x82fd5300 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd52d0 - - -script/lexer.c:322: token 289 text - - -[/boot/dtbs/linux-libre/am335x-bone - - -black.dtb] - - -script/script.c:50: malloc 0x82fd50f0 - - -script/script.c:50: malloc 0x82fd50a0 - - -script/script.c:163: arglist - - -script/script.c:50: malloc 0x82fd5070 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fd5040 - - -script/script.c:50: malloc 0x82fd5020 - - -script/script.c:198: cmdline - - -script/script.c:50: malloc 0x82fd4ff0 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fd5430 - - -script/script.c:50: malloc 0x82fd5410 - - -script/script.c:294: append command - - -script/script.c:50: malloc 0x82fd53f0 - - -kern/disk.c:196: Opening `hd0,msdos1'... - - -disk/uboot/ubootdisk.c:133: Opening 'hd0' - - -disk/uboot/ubootdisk.c:168: (hd0) already open - - -disk/uboot/ubootdisk.c:180: cookie: 0x9ef2b8a8 - - -disk/uboot/ubootdisk.c:194: (hd0) blocksize=512, log_sector_size=9 - - -partmap/msdos.c:188: partition 0: flag 0x0, type 0x83, start 0x800, len - - -0x3a57000 - - -kern/fs.c:56: Detecting ext2... - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605248 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34605312 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34658240 - - -loader/arm/linux.c:483: Loading device tree to 0x81ff0000 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34658304 - - -disk/uboot/ubootdisk.c:259: retval=0, numblocks=64, real_size=64, - - -sector=34658368 - - -kern/disk.c:295: Closing `hd0'. - - -disk/uboot/ubootdisk.c:223: Closed (hd0) - - -script/script.c:65: free 0x82fd53f0 - - -script/script.c:65: free 0x82fd5410 - - -script/script.c:65: free 0x82fd5430 - - -script/script.c:65: free 0x82fd4ff0 - - -script/script.c:65: free 0x82fd5020 - - -script/script.c:65: free 0x82fd5040 - - -script/script.c:65: free 0x82fd5070 - - -script/script.c:65: free 0x82fd50a0 - - -script/script.c:65: free 0x82fd50f0 - - -script/script.c:65: free 0x82fd52d0 - - -script/script.c:65: free 0x82fd5300 - - -script/script.c:65: free 0x82fd5330 - - -script/lexer.c:322: token 259 text [ - - -] - - -script/script.c:50: malloc 0x82fd5390 - - -script/script.c:50: malloc 0x82fd5370 - - -script/lexer.c:322: token 0 text [] - - -script/script.c:50: malloc 0x82fd5430 - - -script/script.c:50: malloc 0x82fd5350 - - -script/script.c:65: free 0x82fd5350 - - -script/script.c:65: free 0x82fd5430 - - -script/script.c:65: free 0x82fd5370 - - -script/script.c:65: free 0x82fd5390 - - -loader/arm/linux.c:238: atag: 0x81ff0000, d9da, edfe0dd0, ? -??, -?? - - -loader/arm/linux.c:246: Kernel at: 0x80008000 - - -loader/arm/linux.c:184: linux_args: 'BOOT_IMAGE=/boot/vmlinuz-linux-libre - - -root=/dev/mmcblk0p1 rw debug ignore_loglevel earlyprintk=serial,keep - - -log_buf_len=16M' - - -loader/arm/linux.c:215: FDT updated for Linux boot - - -loader/arm/linux.c:255: FDT @ 0x0x81ff0000 - - -loader/arm/linux.c:267: Jumping to Linux... - - -[?25l[m[H[J[1;1H[2;27HGNU GRUB version 2.02~beta2 - - - -[m[4;2H+----------------------------------------------------------------------------+[5;2H|[5;79H|[6;2H|[6;79H|[7;2H|[7;79H|[8;2H|[8;79H|[9;2H|[9;79H|[10;2H|[10;79H|[11;2H|[11;79H|[12;2H|[12;79H|[13;2H|[13;79H|[14;2H|[14;79H|[15;2H|[15;79H|[16;2H|[16;79H|[17;2H+----------------------------------------------------------------------------+[m[18;2H[19;2H[m Use the ^ and v keys to select which entry is highlighted. - - - Press enter to boot the selected OS, `e' to edit the commands - - - before booting or `c' for a command-line. [5;80H [7m[5;3H*Parabola GNU/Linux-libre, linux-libre kernel [m[5;78H[m[m[6;3H [m[6;78H[m[m[7;3H [m[7;78H[m[m[8;3H [m[8;78H[m[m[9;3H [m[9;78H[m[m[10;3H [m[10;78H[m[m[11;3H [m[11;78H[m[m[12;3H [m[12;78H[m[m[13;3H [m[13;78H[m[m[14;3H [m[14;78H[m[m[15;3H [m[15;78H[m[m[16;3H [m[16;78H[m[16;80H [5;78H[22;1H [23;1H [5;78H |