Skip to content

Commit 935776e

Browse files
committed
feat: Add J722S NFS boot limitation and remove NFS content
Add known issue LCPD-47749 to J722S release notes documenting that NFS boot fails when EthFW is enabled on MCU2_0 R5F core due to CPSW Proxy Client driver circular dependency. Signed-off-by: Puyush Gupta <p-gupta5@ti.com>
1 parent 21f61b1 commit 935776e

2 files changed

Lines changed: 1 addition & 63 deletions

File tree

source/devices/J722S/linux/Release_Specific_Release_Notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ Linux Known Issues
322322
TAP (no-PHY) DDR mode
323323
TAP (no-PHY) SDR mode"
324324
"LCPD-24654","MCAN: Implement workaround for errata i2279","j7200-evm,j721e-idk-gw,j721s2-evm,j722s_evm-fs,j742s2_evm-fs,j784s4-evm",""
325+
"LCPD-47749","j722s_evm-fs,j722s_evm-se","NFS boot fails when EthFW is enabled on MCU2_0 R5F core due to CPSW Proxy Client driver circular dependency",""
325326

326327

327328
|

source/linux/How_to_Guides/Host/Moving_Files_to_the_Target_System.rst

Lines changed: 0 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -6,66 +6,3 @@ Moving Files to the Target System
66

77
This guide discusses how applications or other files can be moved to the
88
target file system of the EVM.
9-
10-
.. rubric:: File System on SD card
11-
:name: file-systemon-sd-card
12-
13-
The SD card wic image which comes with the TI SDK has a Linux ext4 partition that is used as the target file system.
14-
This partition is readable from a Linux host. In Ubuntu |__LINUX_UBUNTU_VERSION_LONG__| this partition will be mounted on
15-
:file`/media/$USER/rootfs` when the card is used with an SD card reader inserted into a USB port on the Ubuntu host.
16-
17-
When the SD card is mounted with a card reader in the Linux host it is possible to perform :command:`cp` commands from the host into sub-directories
18-
under :file:`/media/$USER/rootfs` or just use a browser window to drag and drop the files from the host to the SD card.
19-
20-
Switching the SD card back and forth from the EVM to the SD card reader
21-
is time consuming during development. Using a NFS during development is
22-
the preferred method and makes moving files between the host and target
23-
trivial.
24-
25-
.. rubric:: File System on Network File System (NFS)
26-
:name: file-system-on-network-file-system-nfs
27-
28-
When the target file system is served from the Linux development host
29-
machine it is trivial to move files between the host and target. The
30-
NFS directory is set up on the host machine by the SDK installer. The
31-
default location in the SDK environment is :file:`${PSDK_PATH}/targetNFS`
32-
This could vary depending on the version of the SDK and how it was installed.
33-
An :command:`ls -l` of this directory in the host system will show what will be the root
34-
directory of the target when it boots up.
35-
36-
.. code-block:: console
37-
38-
user@U1004GT:~/ti-sdk-AM3715-evm-4.0.0.0/filesystem$ pwd
39-
/home/user/ti-sdk-AM3715-evm-4.0.0.0/filesystem
40-
user@U1004GT:~/ti-sdk-AM3715-evm-4.0.0.0/filesystem$ ls -l
41-
total 68
42-
drwxr-xr-x 2 root root 4096 Mar 9 2018 bin
43-
drwxr-xr-x 4 root root 4096 Mar 9 2018 boot
44-
drwxr-xr-x 2 root root 4096 Mar 9 2018 dev
45-
drwxr-xr-x 55 root root 4096 Mar 9 2018 etc
46-
drwxr-xr-x 4 root root 4096 Mar 9 2018 home
47-
drwxr-xr-x 10 root root 4096 Mar 9 2018 lib
48-
lrwxrwxrwx 1 root root 19 Mar 9 2018 linuxrc -> /bin/busybox.nosuid
49-
drwxr-xr-x 2 root root 4096 Mar 9 2018 media
50-
drwxr-xr-x 2 root root 4096 Mar 9 2018 mnt
51-
drwxr-xr-x 14 root root 4096 Mar 9 2018 opt
52-
dr-xr-xr-x 2 root root 4096 Mar 9 2018 proc
53-
drwxr-xr-x 2 root root 4096 Mar 9 2018 run
54-
drwxr-xr-x 2 root root 4096 Mar 9 2018 sbin
55-
drwxr-xr-x 2 root root 4096 Mar 9 2018 srv
56-
dr-xr-xr-x 2 root root 4096 Mar 9 2018 sys
57-
drwxrwxrwt 2 root root 4096 Mar 9 2018 tmp
58-
drwxr-xr-x 12 root root 4096 Mar 9 2018 usr
59-
drwxr-xr-x 9 root root 4096 Mar 9 2018 var
60-
61-
So from the perspective of the host, the target filesystem is just a
62-
sub-directory of the host. If the file is in :file:`./targetNFS` on the host,
63-
then the same file will show up in the root directory of the target
64-
after the target boots into the NFS. And if the file is in a
65-
subdirectory of :file:`./targetNFS` (example :file:`./targetNFS/{sub-dir}/`) then it will
66-
show up in the /sub-dir directory of the target after the target boots
67-
into the NFS.
68-
69-
The top level makefile of the TI SDK supports an install target that
70-
will copy applications into the NFS of the SDK. See the README file at
71-
the top level of the SDK for information about the install target.

0 commit comments

Comments
 (0)