summaryrefslogtreecommitdiffstats
path: root/patches
diff options
context:
space:
mode:
authorDenis Osterland-Heim <denis.osterland@diehl.com>2020-03-26 17:03:56 +0000
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-04-01 16:56:26 +0200
commit8dc2c7d514233515383a5cadb990edb2be9972d1 (patch)
tree3344307bf0faf937f3f5c58c7c40bb334891e2f3 /patches
parentc087f4db776af540ec511921b21480c2cc8e106c (diff)
downloadptxdist-8dc2c7d514233515383a5cadb990edb2be9972d1.tar.gz
ptxdist-8dc2c7d514233515383a5cadb990edb2be9972d1.tar.xz
imx-uuc: new package
NXP user space util used by mfgtool. Signed-off-by: Denis Osterland-Heim <Denis.Osterland@diehl.com> Message-Id: <20200326170225.9586-2-Denis.Osterland@diehl.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'patches')
-rw-r--r--patches/imx-uuc-2019-11-07-gd6afb27e55d73d7ad08cd2dd51c784d8ec9694dc/0001-sh-does-not-support-array-syntax.patch117
-rw-r--r--patches/imx-uuc-2019-11-07-gd6afb27e55d73d7ad08cd2dd51c784d8ec9694dc/series4
2 files changed, 121 insertions, 0 deletions
diff --git a/patches/imx-uuc-2019-11-07-gd6afb27e55d73d7ad08cd2dd51c784d8ec9694dc/0001-sh-does-not-support-array-syntax.patch b/patches/imx-uuc-2019-11-07-gd6afb27e55d73d7ad08cd2dd51c784d8ec9694dc/0001-sh-does-not-support-array-syntax.patch
new file mode 100644
index 000000000..995baea19
--- /dev/null
+++ b/patches/imx-uuc-2019-11-07-gd6afb27e55d73d7ad08cd2dd51c784d8ec9694dc/0001-sh-does-not-support-array-syntax.patch
@@ -0,0 +1,117 @@
+From: Denis Osterland-Heim <Denis.Osterland@diehl.com>
+Date: Thu, 12 Mar 2020 17:36:22 +0100
+Subject: [PATCH] sh does not support array syntax
+
+Remove NFS support, because it uses additional arrays and it is not
+tested.
+
+Signed-off-by: Denis Osterland-Heim <Denis.Osterland@diehl.com>
+---
+ linuxrc | 72 ++++++-----------------------------------------------------------
+ 1 file changed, 6 insertions(+), 66 deletions(-)
+
+diff --git a/linuxrc b/linuxrc
+index 54bb8a2cbbd8..1f15e3cbdff3 100755
+--- a/linuxrc
++++ b/linuxrc
+@@ -16,20 +16,8 @@ last=0;
+
+ UDC_DIR=/sys/class/udc
+
+-function launch_dhcpd() {
+-
+- touch -f /var/lib/misc/udhcpd.leases
+- echo start 168.1.1.50 > /conf
+- echo end 168.1.1.253 >> /conf
+- echo interface usb$1 >>/conf
+-
+- ifconfig usb$1 168.1.1.1
+- udhcpd /conf
+-
+-}
+-
+ function contains() {
+- for i in "${files[@]}"
++ for i in $files
+ do
+ if [ "$i" == "$1" ]; then
+ return 1;
+@@ -45,7 +33,8 @@ function launch_uuc() {
+ echo 0x066F > idVendor
+
+ if [[ ${cmdline} == *nfsroot* ]]; then
+- echo 0x9CFF > idProduct
++ echo "unsupported"
++ exit 1
+ else
+ echo 0x9BFF > idProduct
+ fi
+@@ -69,57 +58,8 @@ function launch_uuc() {
+ echo 0x40 > os_desc/b_vendor_code
+
+ if [[ ${cmdline} == *nfsroot* ]]; then
+- mkdir functions/ncm.1
+- ln -s functions/ncm.1 configs/c.1/
+-# mkdir functions/acm.1
+-# ln -s functions/acm.1 configs/c.1/
+- echo $1 > UDC
+-
+- echo "Start config network"
+-
+- ifconfig usb$2 up
+- while [ ! -e /find_one ]
+- do
+- if [[ `ifconfig usb$2` == *inet6* ]]; then
+- break;
+- fi
+- sleep 1
+- done
+-
+- if [ -e /find_one ]; then
+- exit 0
+- fi
+-
+- touch /find_one
+-
+- launch_dhcpd $2
+-
+- remote=""
+- while [[ "$remote" == "" ]];
+- do
+- sleep 2
+- echo retry get remote ipaddress
+- ping6 -c2 -I usb$2 ff02::1
+-
+- remote=`ip -6 neighbor show dev usb$2`
+- remote=(${remote})
+- remote=${remote[0]}
+- done
+-
+- nfs=${cmdline#*nfsroot=}
+- nfs=($nfs)
+- nfs=${nfs[0]}
+-
+- nfs=${nfs##*:}
+-
+- echo ${remote} ${nfs}
+-
+- mount -t nfs [${remote}%usb$2]:${nfsroot}/${nfs} /mnt/
+-
+- cd /
+-
+- touch /exit_scan
+-
++ echo "unsuppored"
++ exit 1
+ else
+ mkdir functions/ffs.utp$2
+ mkdir /dev/usb-utp$2
+@@ -161,7 +101,7 @@ if test "$(ls -A "$UDC_DIR")"; then
+ for entry in *
+ do
+ if contains $entry; then
+- files[$last]=$entry;
++ files="$files $entry";
+ id=$last;
+ last=`expr $last + 1`;
+ echo "Found New UDC: $entry";
diff --git a/patches/imx-uuc-2019-11-07-gd6afb27e55d73d7ad08cd2dd51c784d8ec9694dc/series b/patches/imx-uuc-2019-11-07-gd6afb27e55d73d7ad08cd2dd51c784d8ec9694dc/series
new file mode 100644
index 000000000..125c531a3
--- /dev/null
+++ b/patches/imx-uuc-2019-11-07-gd6afb27e55d73d7ad08cd2dd51c784d8ec9694dc/series
@@ -0,0 +1,4 @@
+# generated by git-ptx-patches
+#tag:base --start-number 1
+0001-sh-does-not-support-array-syntax.patch
+# a982c4666a0474a014b361496182bd8c - git-ptx-patches magic