Я установил и запустил petalinux на плате Zynq. Он отлично работает и загружается примерно за 3 секунды. Чтобы загрузить его так быстро, мне пришлось выполнить некоторые настройки перед компиляцией исходного кода.
Проблема, с которой я сталкиваюсь сейчас, заключается в том, что после перезагрузки системы (тепло) я не могу сохранить файл или папку. Я создал каталог в /etc, а затем создал файл, записал некоторые данные и сохранил. Я пересек, проверил это файл и папки действительно там. Затем я перезапустил (не отключая «горячую» загрузку) систему, но теперь я не вижу там своих файлов и папок.
Также я делаю все это как root, и вот часть сообщений журнала:
U-BOOT for Xilinx-ZC702-14.7
SF: Detected N25Q128A with page size 64 KiB, total 16 MiB
SF: 3571500 bytes @ 0x520000 Read: OK
## Loading kernel from FIT Image at 01000000 ...
Using 'conf@1' configuration
Trying 'kernel@1' kernel subimage
Description: PetaLinux Kernel
Type: Kernel Image
Compression: gzip compressed
Data Start: 0x010000f0
Data Size: 3554646 Bytes = 3.4 MiB
Architecture: ARM
OS: Linux
Load Address: 0x00008000
Entry Point: 0x00008000
Verifying Hash Integrity ... OK
## Loading fdt from FIT Image at 01000000 ...
Using 'conf@1' configuration
Trying 'fdt@1' fdt subimage
Description: Flattened Device Tree blob
Type: Flat Device Tree
Compression: uncompressed
Data Start: 0x01363ef8
Data Size: 11203 Bytes = 10.9 KiB
Architecture: ARM
Hash algo: crc32
Hash value: 3ade61c7
Hash algo: sha1
Hash value: bcf959c1b25beb6f43f0d91c1ca67d9041d859ae
Verifying Hash Integrity ... crc32+ sha1+ OK
Booting using the fdt blob at 0x1363ef8
Uncompressing Kernel Image ... OK
Loading Device Tree to 07ffa000, end 07fffbc2 ... OK
Starting kernel ...
INIT: version 2.88 booting
Starting Bootlog daemon: bootlogd.
Creating /dev/flash/* device nodes
Configuring network interfaces... ifconfig: socket: Address family not supported by protocol
ifconfig: socket: Address family not supported by protocol
INIT: Entering runlevel: 5
Stopping Bootlog daemon: bootlogd.
_____ _ _ _
| ___ \ | | | | (_)
| |_/ / ___ | |_ __ _ | | _ _ __ _ _ __ __
| __/ / _ \| __| / _` || | | || '_ \ | | | |\ \/ /
| | | __/| |_ | (_| || |____| || | | || |_| | > <
\_| \___| \__| \__,_|\_____/|_||_| |_| \__,_|/_/\_\
PetaLinux v2013.10 (Yocto 1.4) Xilinx-ZC702-14_7 ttyPS0
Xilinx-ZC702-14_7 login: root
Password:
login[731]: root login on `ttyPS0'
root@Xilinx-ZC702-14_7:~# ls
root@Xilinx-ZC702-14_7:~#
Есть ли какие-либо разрешения / право собственности?
root@Xilinx-ZC702-14_7:/# ls -ld *
drwxr-xr-x 2 root root 0 Mar 12 2014 bin
drwxr-xr-x 2 root root 0 Mar 12 2014 boot
drwxr-xr-x 5 root root 0 Jan 1 00:00 dev
drwxr-xr-x 15 root root 0 Jan 1 00:00 etc
drwxr-xr-x 3 root root 0 Mar 12 2014 home
lrwxrwxrwx 1 root root 9 Mar 12 2014 init -> sbin/init
drwxr-xr-x 3 root root 0 Mar 12 2014 lib
drwxr-xr-x 10 root root 0 Mar 12 2014 media
drwxr-xr-x 2 root root 0 Mar 12 2014 mnt
dr-xr-xr-x 40 root root 0 Jan 1 00:00 proc
drwxr-xr-x 2 root root 0 Mar 12 2014 sbin
dr-xr-xr-x 11 root root 0 Jan 1 00:00 sys
lrwxrwxrwx 1 root root 8 Mar 12 2014 tmp -> /var/tmp
drwxr-xr-x 9 root root 0 Mar 12 2014 usr
drwxr-xr-x 7 root root 0 Mar 12 2014 var
root@Xilinx-ZC702-14_7:/#
Также вывод mount:
root@Xilinx-ZC702-14_7:/# mount
rootfs on / type rootfs (rw,relatime)
proc on /proc type proc (rw,relatime)
sysfs on /sys type sysfs (rw,relatime)
tmpfs on /dev type tmpfs (rw,relatime,size=64k,mode=0755)
devpts on /dev/pts type devpts (rw,relatime,mode=600)
tmpfs on /var/volatile type tmpfs (rw,relatime)
tmpfs on /media/ram type tmpfs (rw,relatime)
Я не вижу здесь ничего необычного. Я вошел в систему как root и должен иметь все права на создание файлов и папок.
Пожалуйста, обратите внимание, что я загружаюсь с флэш-памяти. ОС фактически работает на ARM Cortex A9.
Есть идеи, что это происходит?