From 35a5cbe18f8182b5b0ec166e5a06382f6d05143a Mon Sep 17 00:00:00 2001 From: Piotr Dymacz Date: Thu, 20 Mar 2014 21:37:23 +0100 Subject: [PATCH] Simple websites, without logo and repository link, only for fw update --- u-boot/httpd/vendors/oem/404.html | 14 ++++++++++ u-boot/httpd/vendors/oem/fail.html | 14 ++++++++++ u-boot/httpd/vendors/oem/flashing.html | 17 ++++++++++++ u-boot/httpd/vendors/oem/index.html | 15 +++++++++++ u-boot/httpd/vendors/oem/style.css | 37 ++++++++++++++++++++++++++ 5 files changed, 97 insertions(+) create mode 100755 u-boot/httpd/vendors/oem/404.html create mode 100755 u-boot/httpd/vendors/oem/fail.html create mode 100755 u-boot/httpd/vendors/oem/flashing.html create mode 100755 u-boot/httpd/vendors/oem/index.html create mode 100755 u-boot/httpd/vendors/oem/style.css diff --git a/u-boot/httpd/vendors/oem/404.html b/u-boot/httpd/vendors/oem/404.html new file mode 100755 index 0000000..ae413c3 --- /dev/null +++ b/u-boot/httpd/vendors/oem/404.html @@ -0,0 +1,14 @@ + + + + + Page not found + + + +
+

Page not found

+

The page you were looking for doesn't exist!
Go back to firmware update page.

+
+ + \ No newline at end of file diff --git a/u-boot/httpd/vendors/oem/fail.html b/u-boot/httpd/vendors/oem/fail.html new file mode 100755 index 0000000..225454e --- /dev/null +++ b/u-boot/httpd/vendors/oem/fail.html @@ -0,0 +1,14 @@ + + + + + Update failed + + + +
+

Update failed

+

Please, try again or contact with the support.
You can also get more information during update in U-Boot console.

+
+ + \ No newline at end of file diff --git a/u-boot/httpd/vendors/oem/flashing.html b/u-boot/httpd/vendors/oem/flashing.html new file mode 100755 index 0000000..c1c3202 --- /dev/null +++ b/u-boot/httpd/vendors/oem/flashing.html @@ -0,0 +1,17 @@ + + + + + Update in progress + + + +
+

Update in progress

+

Your file was successfully uploaded! Update is in progress and you should wait for automatic reset of the device.
Update time depends on image size and may take up to a few minutes. You can close this page.

+
+
+ + \ No newline at end of file diff --git a/u-boot/httpd/vendors/oem/index.html b/u-boot/httpd/vendors/oem/index.html new file mode 100755 index 0000000..c5351d9 --- /dev/null +++ b/u-boot/httpd/vendors/oem/index.html @@ -0,0 +1,15 @@ + + + + + Firmware update + + + +
+

Firmware update

+

You are going to upload new firmware to the device.
Choose a proper file from your local hard drive and click "Update firmware" button.
Please, do not power off the device during update, if everything goes well, the device will restart.

+
+
+ + \ No newline at end of file diff --git a/u-boot/httpd/vendors/oem/style.css b/u-boot/httpd/vendors/oem/style.css new file mode 100755 index 0000000..1e59983 --- /dev/null +++ b/u-boot/httpd/vendors/oem/style.css @@ -0,0 +1,37 @@ +h1, +p, +form, +body { + margin: 0; + padding: 0; +} + +html, +body { + font: 13px/20px Tahoma, sans-serif; + background: #FFF; + color: #000; + text-align: center; + height: 100%; +} + +#m { + padding: 30px 0; +} + +#m > * { + padding: 20px; +} + +a { + color: #0069FB; + text-decoration: none; +} + +h1 { + font: bold 40px/40px Arial; +} + +.red { + color: #ED0000; +} \ No newline at end of file -- 2.25.1